Changeset 974052ffdfacbaaaf63f6855488167040ed9bfc9

Show
Ignore:
Timestamp:
07/16/02 01:05:46 (6 years ago)
Author:
Jon Lech Johansen <jlj@videolan.org>
git-committer:
Jon Lech Johansen <jlj@videolan.org> 1026774346 +0000
git-parent:

[b2afa3ea8d7a63712c39a9fb0c2b86880f1a0cb9]

git-author:
Jon Lech Johansen <jlj@videolan.org> 1026774346 +0000
Message:
  • ./plugins/access/http.c: fixed memory leak.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/access/http.c

    r7e648e8 r974052f  
    33 ***************************************************************************** 
    44 * Copyright (C) 2001, 2002 VideoLAN 
    5  * $Id: http.c,v 1.14 2002/07/15 22:20:47 jlj Exp $ 
     5 * $Id: http.c,v 1.15 2002/07/15 23:05:46 jlj Exp $ 
    66 * 
    77 * Authors: Christophe Massiot <massiot@via.ecp.fr> 
     
    450450static void HTTPClose( input_thread_t * p_input ) 
    451451{ 
     452    _input_socket_t * p_access_data =  
     453        (_input_socket_t *)p_input->p_access_data; 
     454 
     455    free( p_access_data->psz_name ); 
    452456    input_FDNetworkClose( p_input ); 
    453457}