# HG changeset patch # User reimar # Date 1353698761 0 # Node ID dac86d3464e2a281b4c9c0d316bf8c9f6e437b70 # Parent 7e303b6aafca21fc14cb6b34e9f4a496a4a62547 Also free the noauth_url entry in the URL struct. diff -r 7e303b6aafca -r dac86d3464e2 stream/url.c --- a/stream/url.c Fri Nov 23 19:21:36 2012 +0000 +++ b/stream/url.c Fri Nov 23 19:26:01 2012 +0000 @@ -310,6 +310,7 @@ url_free(URL_t* url) { if(!url) return; free(url->url); + free(url->noauth_url); free(url->protocol); free(url->hostname); free(url->file);