avutil/avstring: Do not print NULL
Fixes segfault Fixes Ticket4452 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 52e02a9e59f83ede84363d0f035389e44357d4a5) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
bea4894d0c
commit
23614d09d5
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user