From: RĂ©mi Duraffort Date: Tue, 24 Jun 2008 20:54:52 +0000 (+0200) Subject: Fix a double vlc_object_release (partially fix the update system) X-Git-Tag: 0.9.0-test1~121^2~24 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=fd2c554d2abae44f8c732af1da51127c3ab00741;p=vlc Fix a double vlc_object_release (partially fix the update system) --- diff --git a/src/input/stream.c b/src/input/stream.c index 8c669d0dde..567c11593e 100644 --- a/src/input/stream.c +++ b/src/input/stream.c @@ -535,7 +535,6 @@ static void UStreamDestroy( stream_t *s ) { access_t *p_access = (access_t *)s->p_parent; AStreamDestroy( s ); - vlc_object_release( p_access ); access_Delete( p_access ); }