[MPlayer-cvslog] r35389 - in trunk/stream: pnm.c stream_live555.c

reimar subversion at mplayerhq.hu
Sat Nov 10 13:42:43 CET 2012


Author: reimar
Date: Sat Nov 10 13:42:43 2012
New Revision: 35389

Log:
Fix incorrectly commented-out url_frees.

Modified:
   trunk/stream/pnm.c
   trunk/stream/stream_live555.c

Modified: trunk/stream/pnm.c
==============================================================================
--- trunk/stream/pnm.c	Sat Nov 10 13:39:45 2012	(r35388)
+++ trunk/stream/pnm.c	Sat Nov 10 13:42:43 2012	(r35389)
@@ -831,7 +831,7 @@ static int open_s(stream_t *stream,int m
   stream->streaming_ctrl->bandwidth = network_bandwidth;
   url = url_new(stream->url);
   stream->streaming_ctrl->url = check4proxies(url);
-  //url_free(url);
+  url_free(url);
 
   fd = connect2Server( stream->streaming_ctrl->url->hostname,
     stream->streaming_ctrl->url->port ? stream->streaming_ctrl->url->port : 7070,1 );

Modified: trunk/stream/stream_live555.c
==============================================================================
--- trunk/stream/stream_live555.c	Sat Nov 10 13:39:45 2012	(r35388)
+++ trunk/stream/stream_live555.c	Sat Nov 10 13:42:43 2012	(r35389)
@@ -49,7 +49,7 @@ static int open_live_rtsp_sip(stream_t *
   stream->streaming_ctrl->bandwidth = network_bandwidth;
   url = url_new(stream->url);
   stream->streaming_ctrl->url = check4proxies(url);
-  //url_free(url);
+  url_free(url);
 
   mp_msg(MSGT_OPEN, MSGL_INFO, "STREAM_LIVE555, URL: %s\n", stream->url);
 


More information about the MPlayer-cvslog mailing list