Commit e2d0b553 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

modules: Don't cast a const to silent a warning on free().

parent 2453f7a8
...@@ -1342,14 +1342,14 @@ static void UndupModule( module_t *p_module ) ...@@ -1342,14 +1342,14 @@ static void UndupModule( module_t *p_module )
for( pp_shortcut = p_module->pp_shortcuts ; *pp_shortcut ; pp_shortcut++ ) for( pp_shortcut = p_module->pp_shortcuts ; *pp_shortcut ; pp_shortcut++ )
{ {
free( (void*)*pp_shortcut ); free( *pp_shortcut );
} }
free( (void*)p_module->psz_object_name ); free( p_module->psz_object_name );
free( p_module->psz_capability ); free( p_module->psz_capability );
free( (void*)p_module->psz_shortname ); free( p_module->psz_shortname );
free( (void*)p_module->psz_longname ); free( p_module->psz_longname );
free( (void*)p_module->psz_help ); free( p_module->psz_help );
} }
#endif /* HAVE_DYNAMIC_PLUGINS */ #endif /* HAVE_DYNAMIC_PLUGINS */
......
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