[vlc-devel] commit: Fix previous commit. ( Rémi Duraffort )
git version control
git at videolan.org
Wed May 20 00:05:21 CEST 2009
vlc | branch: 1.0-bugfix | Rémi Duraffort <ivoire at videolan.org> | Wed May 20 00:04:30 2009 +0200| [2f4845954e05768d5d155ccf167ef6530296a319] | committer: Rémi Duraffort
Fix previous commit.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2f4845954e05768d5d155ccf167ef6530296a319
---
src/misc/variables.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/misc/variables.c b/src/misc/variables.c
index f8bf3d8..52a7f7e 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;
More information about the vlc-devel
mailing list