x264enc: drop unnecessary NULL check before g_free
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Thu, 19 Nov 2015 07:20:59 +0000 (23:20 -0800)
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Thu, 19 Nov 2015 07:20:59 +0000 (23:20 -0800)
ext/x264/gstx264enc.c

index dd1236c..1ca61f4 100644 (file)
@@ -2347,8 +2347,7 @@ gst_x264_enc_set_property (GObject * object, guint prop_id,
           encoder->sync_lookahead);
       break;
     case ARG_MULTIPASS_CACHE_FILE:
-      if (encoder->mp_cache_file)
-        g_free (encoder->mp_cache_file);
+      g_free (encoder->mp_cache_file);
       encoder->mp_cache_file = g_value_dup_string (value);
       g_string_append_printf (encoder->option_string, ":stats=%s",
           encoder->mp_cache_file);