]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/store/firebird/firebird_store_users.cpp
Remove redindand ctors from USER_IPS.
[stg.git] / projects / stargazer / plugins / store / firebird / firebird_store_users.cpp
index 2e92603ea3a201c5ab87c405bbc8637e40d77268..d98d7929922bc2ac02a3372757c50e753622e92f 100644 (file)
@@ -537,14 +537,15 @@ try
                  where fk_user = ?");
     st->Set(1, uid);
     st->Execute();
-    conf->ips.Erase();
+    USER_IPS ips;
     while (st->Fetch())
         {
         IP_MASK im;
         st->Get(1, (int32_t &)im.ip);
         st->Get(2, (int32_t &)im.mask);
-        conf->ips.Add(im);
+        ips.Add(im);
         }
+    conf->ips = ips;
 
     tr->Commit();
     }