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

Fix memleak

parent bc1649c4
...@@ -429,6 +429,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -429,6 +429,7 @@ static int Open( vlc_object_t *p_this )
p_sys->p_session = p_sys->p_session =
sout_AnnounceRegisterSDP (p_sout, psz_sdp, dhost, p_method); sout_AnnounceRegisterSDP (p_sout, psz_sdp, dhost, p_method);
sout_MethodRelease (p_method); sout_MethodRelease (p_method);
free( psz_sdp );
} }
free (dhost); free (dhost);
} }
......
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