mirror of
https://github.com/weechat/weechat.git
synced 2026-06-24 11:56:38 +02:00
Fix 14 memory leaks (in core, gui, irc, jabber, logger, script plugins)
This commit is contained in:
@@ -500,10 +500,14 @@ script_remove (struct t_weechat_plugin *weechat_plugin,
|
||||
free (script->filename);
|
||||
if (script->name)
|
||||
free (script->name);
|
||||
if (script->description)
|
||||
free (script->description);
|
||||
if (script->author)
|
||||
free (script->author);
|
||||
if (script->version)
|
||||
free (script->version);
|
||||
if (script->license)
|
||||
free (script->license);
|
||||
if (script->description)
|
||||
free (script->description);
|
||||
if (script->shutdown_func)
|
||||
free (script->shutdown_func);
|
||||
if (script->charset)
|
||||
|
||||
Reference in New Issue
Block a user