1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 18:23:13 +02:00

plugins: fix memory leaks when setting buffer callbacks after /upgrade (plugins: irc, relay, xfer, scripts)

This commit is contained in:
Sebastien Helleu
2011-04-15 10:40:23 +02:00
parent 091d128ac5
commit 55aa584a2b
5 changed files with 7 additions and 1 deletions
+1
View File
@@ -258,6 +258,7 @@ irc_upgrade_set_buffer_callbacks ()
}
}
}
weechat_infolist_free (infolist);
}
}
+1
View File
@@ -145,6 +145,7 @@ relay_upgrade_set_buffer_callbacks ()
}
}
}
weechat_infolist_free (infolist);
}
}
+1
View File
@@ -170,6 +170,7 @@ script_upgrade_set_buffer_callbacks (struct t_weechat_plugin *weechat_plugin,
}
}
}
weechat_infolist_free (infolist);
}
}
+1
View File
@@ -92,6 +92,7 @@ xfer_upgrade_set_buffer_callbacks ()
}
}
}
weechat_infolist_free (infolist);
}
}