diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2003-05-22 09:48:53 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2003-05-22 09:48:53 +0000 |
commit | 46b9a912ad54d9ec8348ee7b19158101f3096677 (patch) | |
tree | 3ce66855af0ea25b537ec6d6db9ff9bc4c33c41b | |
parent | af5e954d020240cc5c7f18778394bea51d9a2072 (diff) | |
download | xine-lib-46b9a912ad54d9ec8348ee7b19158101f3096677.tar.gz xine-lib-46b9a912ad54d9ec8348ee7b19158101f3096677.tar.bz2 |
- we're not allowed to free pointers to an on-stack string, fixes segfault when trying to play a file that was 404
CVS patchset: 4901
CVS date: 2003/05/22 09:48:53
-rw-r--r-- | src/input/input_http.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/input/input_http.c b/src/input/input_http.c index 96c83f489..02370eb05 100644 --- a/src/input/input_http.c +++ b/src/input/input_http.c @@ -657,7 +657,6 @@ static void http_plugin_dispose (input_plugin_t *this_gen ) { this->nbc = NULL; } - free (this->mrl); free (this); } |