# HG changeset patch # User reimar # Date 1352551363 0 # Node ID 7505733df2b46b8f23f2887df48bc0d624d53036 # Parent a87b3429d9a9add2fd0014ca72cbcaf009fd37fc Fix incorrectly commented-out url_frees. diff -r a87b3429d9a9 -r 7505733df2b4 stream/pnm.c --- a/stream/pnm.c Sat Nov 10 12:39:45 2012 +0000 +++ b/stream/pnm.c Sat Nov 10 12:42:43 2012 +0000 @@ -831,7 +831,7 @@ 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 ); diff -r a87b3429d9a9 -r 7505733df2b4 stream/stream_live555.c --- a/stream/stream_live555.c Sat Nov 10 12:39:45 2012 +0000 +++ b/stream/stream_live555.c Sat Nov 10 12:42:43 2012 +0000 @@ -49,7 +49,7 @@ 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);