Commit 766d88a6 authored by Rémi Duraffort's avatar Rémi Duraffort

module_config_get return value must be used and freed.

parent f2c81482
...@@ -50,7 +50,7 @@ int module_start(vlc_object_t *, module_t *); ...@@ -50,7 +50,7 @@ int module_start(vlc_object_t *, module_t *);
void module_stop(vlc_object_t *, module_t *); void module_stop(vlc_object_t *, module_t *);
#define module_stop(o, m) module_stop(VLC_OBJECT(o),m) #define module_stop(o, m) module_stop(VLC_OBJECT(o),m)
VLC_EXPORT( module_config_t *, module_config_get, ( const module_t *, unsigned * ) ); VLC_EXPORT( module_config_t *, module_config_get, ( const module_t *, unsigned * ) LIBVLC_USED );
VLC_EXPORT( void, module_config_free, ( module_config_t * ) ); VLC_EXPORT( void, module_config_free, ( module_config_t * ) );
VLC_EXPORT( module_t *, module_hold, (module_t *module) ); VLC_EXPORT( module_t *, module_hold, (module_t *module) );
......
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