Commit 20b0b2be authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avformat/tests/imf: Don't use uninitialized value

Reviewed-by: 's avatarZane van Iperen <zane@zanevaniperen.com>
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent 4c03928f
......@@ -347,7 +347,7 @@ static int test_bad_cpl_parsing(void)
doc = xmlReadMemory(cpl_bad_doc, strlen(cpl_bad_doc), NULL, NULL, 0);
if (doc == NULL) {
printf("XML parsing failed.\n");
return ret;
return 1;
}
ret = ff_imf_parse_cpl_from_xml_dom(doc, &cpl);
......
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