From f847af0e291ef8e79640723dbd3bd4ae552198f6 Mon Sep 17 00:00:00 2001 From: reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> Date: Sat, 9 Dec 2006 19:50:08 +0000 Subject: [PATCH] Fix misplaced http_free git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21558 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }