Commit 42b774ab authored by Nicolas George's avatar Nicolas George

opt: init test_ctx to 0.

Otherwise, setting string will try to free a random address.
parent d9b0d75c
...@@ -927,7 +927,7 @@ int main(void) ...@@ -927,7 +927,7 @@ int main(void)
printf("\nTesting av_set_options_string()\n"); printf("\nTesting av_set_options_string()\n");
{ {
TestContext test_ctx; TestContext test_ctx = { 0 };
const char *options[] = { const char *options[] = {
"", "",
":", ":",
......
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