Commit 52e02a9e authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/avstring: Do not print NULL

Fixes segfault
Fixes Ticket4452
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ee3ef5fd
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment