Commit c88a2517 authored by Rafaël Carré's avatar Rafaël Carré

httpcookies: fix memleak

parent caaac10c
......@@ -87,6 +87,8 @@ void vlc_http_cookies_destroy( vlc_http_cookie_jar_t * p_jar )
vlc_array_clear( &p_jar->cookies );
vlc_mutex_destroy( &p_jar->lock );
free( p_jar );
}
bool vlc_http_cookies_append( vlc_http_cookie_jar_t * p_jar, const char * psz_cookie_header, const vlc_url_t *p_url )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment