Commit e533549b authored by Rémi Duraffort's avatar Rémi Duraffort

demux: use calloc when applicable.

parent 5a75fb87
...@@ -194,9 +194,9 @@ VLC_EXPORT( void, demux_PacketizerDestroy, ( decoder_t *p_packetizer ) ); ...@@ -194,9 +194,9 @@ VLC_EXPORT( void, demux_PacketizerDestroy, ( decoder_t *p_packetizer ) );
#define DEMUX_INIT_COMMON() do { \ #define DEMUX_INIT_COMMON() do { \
p_demux->pf_control = Control; \ p_demux->pf_control = Control; \
p_demux->pf_demux = Demux; \ p_demux->pf_demux = Demux; \
p_demux->p_sys = malloc( sizeof( demux_sys_t ) ); \ p_demux->p_sys = calloc( 1, sizeof( demux_sys_t ) ); \
if( !p_demux->p_sys ) return VLC_ENOMEM;\ if( !p_demux->p_sys ) return VLC_ENOMEM;\
memset( p_demux->p_sys, 0, sizeof( demux_sys_t ) ); } while(0) } while(0)
/** /**
* @} * @}
......
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