From e80f251e5bccdb29d5e213d8712c79f5953142f4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 3 Aug 2011 18:24:17 +0300 Subject: [PATCH] block_BytestreamRelease: remove useless zeroing (before free) --- include/vlc_block_helper.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/vlc_block_helper.h b/include/vlc_block_helper.h index d7b2763cd3..1528b94387 100644 --- a/include/vlc_block_helper.h +++ b/include/vlc_block_helper.h @@ -57,8 +57,6 @@ static inline void block_BytestreamRelease( block_bytestream_t *p_bytestream ) p_bytestream->p_chain->pf_release( p_bytestream->p_chain ); p_bytestream->p_chain = p_next; } - p_bytestream->i_offset = 0; - p_bytestream->p_chain = p_bytestream->p_block = NULL; } /** -- 2.39.5