Skip to content
Snippets Groups Projects
Commit 61c266d7 authored by Nicolas George's avatar Nicolas George
Browse files

opt: free test_ctx.string at the end.

Makes valgrind happy.
parent 42b774ab
No related branches found
No related tags found
No related merge requests found
...@@ -962,6 +962,7 @@ int main(void) ...@@ -962,6 +962,7 @@ int main(void)
av_log(&test_ctx, AV_LOG_ERROR, "Error setting options string: '%s'\n", options[i]); av_log(&test_ctx, AV_LOG_ERROR, "Error setting options string: '%s'\n", options[i]);
printf("\n"); printf("\n");
} }
av_freep(&test_ctx.string);
} }
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment