Commit 2f484595 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix previous commit.

parent 9c24e193
...@@ -624,7 +624,7 @@ int __var_Change( vlc_object_t *p_this, const char *psz_name, ...@@ -624,7 +624,7 @@ int __var_Change( vlc_object_t *p_this, const char *psz_name,
if( p_val && p_val->psz_string ) if( p_val && p_val->psz_string )
p_var->psz_text = strdup( p_val->psz_string ); p_var->psz_text = strdup( p_val->psz_string );
else else
p_val->psz_text = NULL; p_var->psz_text = NULL;
break; break;
case VLC_VAR_GETTEXT: case VLC_VAR_GETTEXT:
p_val->psz_string = NULL; p_val->psz_string = NULL;
......
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