added "nowho" parameter to debug userlist and fixed memory leak in DBHelper.c
[NeonServV5.git] / src / cmd_neonserv_downall.c
index 1d001c95df7c3a27ced00ab2126501086acda631..a7add4772d67c13537d659262d49e825306f24a4 100644 (file)
@@ -1,3 +1,19 @@
+/* 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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License 
+ * along with this program. If not, see <http://www.gnu.org/licenses/>. 
+ */
 
 #include "cmd_neonserv.h"
 
@@ -7,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);
@@ -14,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;