x264enc: drop unnecessary NULL check before g_free

This commit is contained in:
Reynaldo H. Verdejo Pinochet 2015-11-18 23:20:59 -08:00
parent cc2c53bdde
commit 7d7bab4640

View 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);