From 2f4845954e05768d5d155ccf167ef6530296a319 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Wed, 20 May 2009 00:04:30 +0200 Subject: [PATCH] Fix previous commit. --- src/misc/variables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/variables.c b/src/misc/variables.c index f8bf3d8e95..52a7f7e589 100644 --- a/src/misc/variables.c +++ b/src/misc/variables.c @@ -624,7 +624,7 @@ int __var_Change( vlc_object_t *p_this, const char *psz_name, if( p_val && p_val->psz_string ) p_var->psz_text = strdup( p_val->psz_string ); else - p_val->psz_text = NULL; + p_var->psz_text = NULL; break; case VLC_VAR_GETTEXT: p_val->psz_string = NULL; -- 2.20.1