From: Laurent Aimar Date: Thu, 6 Mar 2003 11:15:55 +0000 (+0000) Subject: * http: lalala, forgot one line :) X-Git-Tag: 0.5.2~28 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=0474a40f38dd916f530a18e5b50e73e6ce3ff11c;p=vlc * http: lalala, forgot one line :) --- diff --git a/modules/access_output/http.c b/modules/access_output/http.c index 512d24cfb0..bbeb2a0b94 100644 --- a/modules/access_output/http.c +++ b/modules/access_output/http.c @@ -2,7 +2,7 @@ * http.c ***************************************************************************** * Copyright (C) 2001-2003 VideoLAN - * $Id: http.c,v 1.2 2003/02/25 17:17:43 fenrir Exp $ + * $Id: http.c,v 1.3 2003/03/06 11:15:55 fenrir Exp $ * * Authors: Laurent Aimar * @@ -195,7 +195,7 @@ static int Open( vlc_object_t *p_this ) free( psz_name ); free( psz_file_name ); - free( p_access ); + free( p_sys ); return( VLC_EGENERIC ); } @@ -210,7 +210,7 @@ static int Open( vlc_object_t *p_this ) free( psz_name ); free( psz_file_name ); - free( p_access ); + free( p_sys ); return( VLC_EGENERIC ); } @@ -228,7 +228,7 @@ static int Open( vlc_object_t *p_this ) free( psz_name ); free( psz_file_name ); - free( p_access ); + free( p_sys ); return( VLC_EGENERIC ); }