Author: vitor
Date: Sat Apr 12 16:16:34 2008
New Revision: 2126

Log:
Simplify

Modified:
   libavfilter/graphparser.c

Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c   (original)
+++ libavfilter/graphparser.c   Sat Apr 12 16:16:34 2008
@@ -156,13 +156,9 @@ static void parse_link_name(const char *
     if(*(*buf)++ != ']') {
         av_log(&log_ctx, AV_LOG_ERROR,
                "Mismatched '[' found in the following: \"%s\".\n", start);
-        goto fail;
+    fail:
+        av_freep(name);
     }
-
-    return;
-
- fail:
-    av_freep(name);
 }
 
 /**
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to