From 52e02a9e59f83ede84363d0f035389e44357d4a5 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 19 Jun 2015 15:57:32 +0200 Subject: avutil/avstring: Do not print NULL Fixes segfault Fixes Ticket4452 Signed-off-by: Michael Niedermayer --- libavutil/avstring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil') diff --git a/libavutil/avstring.c b/libavutil/avstring.c index b184442306..24d1bb98e9 100644 --- a/libavutil/avstring.c +++ b/libavutil/avstring.c @@ -502,7 +502,7 @@ int main(void) printf("Testing av_append_path_component()\n"); #define TEST_APPEND_PATH_COMPONENT(path, component, expected) \ fullpath = av_append_path_component((path), (component)); \ - printf("%s = %s\n", fullpath, expected); \ + printf("%s = %s\n", fullpath ? fullpath : "(null)", expected); \ av_free(fullpath); TEST_APPEND_PATH_COMPONENT(NULL, NULL, "(null)") TEST_APPEND_PATH_COMPONENT("path", NULL, "path"); -- cgit v1.2.3