added "nowho" parameter to debug userlist and fixed memory leak in DBHelper.c
[NeonServV5.git] / src / cmd_neonserv_downall.c
index b4196125b65c6919175606f627ab0bd4f3c9b2fb..a7add4772d67c13537d659262d49e825306f24a4 100644 (file)
@@ -1,5 +1,5 @@
-/* cmd_neonserv_downall.c - NeonServ v5.0
- * Copyright (C) 2011  Philipp Kreil (pk910)
+/* cmd_neonserv_downall.c - NeonServ v5.3
+ * Copyright (C) 2011-2012  Philipp Kreil (pk910)
  * 
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -23,6 +23,7 @@
 
 CMD_BIND(neonserv_cmd_downall) {
     struct ChanUser *chanuser;
+    int botid = client->botid;
     for(chanuser = getUserChannels(user, NULL); chanuser; chanuser = getUserChannels(user, chanuser)) {
         chan = chanuser->chan;
         loadChannelSettings(chan);
@@ -30,6 +31,8 @@ CMD_BIND(neonserv_cmd_downall) {
         printf_mysql_query("SELECT `botid` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '%d'", chan->channel_id, client->botid);
         if (mysql_fetch_row(mysql_use()) == NULL) continue;
         int done = 0;
+        client = getChannelBot(chan, botid);
+        if(!client) continue;
         if((chanuser->flags & CHANUSERFLAG_OPPED)) {
             putsock(client, "MODE %s -o %s", chan->name, user->nick);
             done = 1;