[vlc-devel] commit: Typo, uninit (CID #127) ( Rémi Denis-Courmont )
git version control
git at videolan.org
Tue Jul 1 21:27:22 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Tue Jul 1 22:27:41 2008 +0300| [e39b4a1a91ab2567c104821bf79b534c6f67785f]
Typo, uninit (CID #127)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e39b4a1a91ab2567c104821bf79b534c6f67785f
---
modules/control/http/http.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/modules/control/http/http.c b/modules/control/http/http.c
index 5f3396a..eed8cea 100644
--- a/modules/control/http/http.c
+++ b/modules/control/http/http.c
@@ -2,7 +2,6 @@
* http.c : HTTP/HTTPS Remote control interface
*****************************************************************************
* Copyright (C) 2001-2006 the VideoLAN team
- * $Id$
*
* Authors: Gildas Bazin <gbazin at netcourrier.com>
* Laurent Aimar <fenrir at via.ecp.fr>
@@ -600,7 +599,7 @@ int HandlerCallback( httpd_handler_sys_t *p_args,
char *p_url = (char *)_p_url;
char *p_request = (char *)_p_request;
char **pp_data = (char **)_pp_data;
- char *p_in = (char *)p_in;
+ char *p_in = (char *)_p_in;
int i_request = p_request != NULL ? strlen( p_request ) : 0;
char *p;
int i_env = 0;
More information about the vlc-devel
mailing list