Changeset 974052ffdfacbaaaf63f6855488167040ed9bfc9
- 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
| r7e648e8 |
r974052f |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * 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 $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 450 | 450 | static void HTTPClose( input_thread_t * p_input ) |
|---|
| 451 | 451 | { |
|---|
| | 452 | _input_socket_t * p_access_data = |
|---|
| | 453 | (_input_socket_t *)p_input->p_access_data; |
|---|
| | 454 | |
|---|
| | 455 | free( p_access_data->psz_name ); |
|---|
| 452 | 456 | input_FDNetworkClose( p_input ); |
|---|
| 453 | 457 | } |
|---|