Commit 03a2c137 authored by vitor's avatar vitor

Simplify

Commited in SoC by Vitor Sessak on 2008-04-12 14:16:34


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13313 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7a04878d
...@@ -156,13 +156,9 @@ static void parse_link_name(const char **buf, char **name) ...@@ -156,13 +156,9 @@ static void parse_link_name(const char **buf, char **name)
if(*(*buf)++ != ']') { if(*(*buf)++ != ']') {
av_log(&log_ctx, AV_LOG_ERROR, av_log(&log_ctx, AV_LOG_ERROR,
"Mismatched '[' found in the following: \"%s\".\n", start); "Mismatched '[' found in the following: \"%s\".\n", start);
goto fail; fail:
av_freep(name);
} }
return;
fail:
av_freep(name);
} }
/** /**
......
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