added "nowho" parameter to debug userlist and fixed memory leak in DBHelper.c
[NeonServV5.git] / src / cmd_neonserv_upall.c
index ebcec914db2a03d98dc7b935d578664a6fcf7503..0f12379558bb33b30821a9a5bb85b3e48e7a7265 100644 (file)
@@ -1,5 +1,5 @@
-/* cmd_neonserv_upall.c - NeonServ v5.0
- * Copyright (C) 2011  Philipp Kreil (pk910)
+/* cmd_neonserv_upall.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
@@ -26,6 +26,7 @@ CMD_BIND(neonserv_cmd_upall) {
     MYSQL_ROW row, default_row;
     struct ChanUser *chanuser;
     int userid, chan_getop, chan_getvoice, caccess;
+    int botid = client->botid;
     printf_mysql_query("SELECT `user_id` FROM `users` WHERE `user_user` = '%s'", user->auth);
     res = mysql_use();
     if ((row = mysql_fetch_row(res)) == NULL)
@@ -51,6 +52,8 @@ CMD_BIND(neonserv_cmd_upall) {
         }
         caccess = atoi(row[0]);
         int done = 0;
+        client = getChannelBot(chan, botid);
+        if(!client) continue;
         if(caccess >= chan_getop) {
             if(!(chanuser->flags & CHANUSERFLAG_OPPED)) {
                 putsock(client, "MODE %s +o %s", chan->name, user->nick);