[vlc-devel] commit: fix assignement order from [3ecd0eb5dcb4] ( Rafaël Carré )
git version control
git at videolan.org
Sat Feb 20 20:29:19 CET 2010
vlc | branch: master | Rafaël Carré <rafael.carre at gmail.com> | Sat Feb 20 20:28:27 2010 +0100| [21a99454a015707075906da149693f0fa805d60b] | committer: Rafaël Carré
fix assignement order from [3ecd0eb5dcb4]
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=21a99454a015707075906da149693f0fa805d60b
---
modules/misc/notify/notify.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/misc/notify/notify.c b/modules/misc/notify/notify.c
index f9c4b2d..c3862b0 100644
--- a/modules/misc/notify/notify.c
+++ b/modules/misc/notify/notify.c
@@ -213,7 +213,7 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
{
char *psz = make_path( psz_arturl );
free( psz_arturl );
- psz = psz_arturl;
+ psz_arturl = psz;
}
if( psz_arturl )
More information about the vlc-devel
mailing list