summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-09 19:50:08 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-09 19:50:08 +0000
commitf847af0e291ef8e79640723dbd3bd4ae552198f6 (patch)
tree0855b41494fecb4c813f19ae84cb411ce02232fc /stream
parentfd020fc4f71650e8e38a750f99355890d51dbda8 (diff)
downloadmpv-f847af0e291ef8e79640723dbd3bd4ae552198f6.tar.bz2
mpv-f847af0e291ef8e79640723dbd3bd4ae552198f6.tar.xz
Fix misplaced http_free
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21558 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/http.c b/stream/http.c
index 17613e71df..899c850ee2 100644
--- a/stream/http.c
+++ b/stream/http.c
@@ -858,8 +858,8 @@ static int http_streaming_start(stream_t *stream, int* file_format) {
err_out:
if (fd > 0) closesocket( fd );
res = -1;
-out:
http_free( http_hdr );
+out:
return res;
}