diff options
Diffstat (limited to 'src/trinityrealm/RealmList.cpp')
-rw-r--r-- | src/trinityrealm/RealmList.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/trinityrealm/RealmList.cpp b/src/trinityrealm/RealmList.cpp index a04a4fd7bfb..5a441de8012 100644 --- a/src/trinityrealm/RealmList.cpp +++ b/src/trinityrealm/RealmList.cpp @@ -83,7 +83,7 @@ void RealmList::UpdateRealms(bool init) { sLog.outDetail("Updating Realm List..."); - QueryResult *result = loginDatabase.Query("SELECT id, name, address, port, icon, color, timezone, allowedSecurityLevel, population, gamebuild FROM realmlist WHERE color <> 3 ORDER BY name"); + QueryResult_AutoPtr result = loginDatabase.Query("SELECT id, name, address, port, icon, color, timezone, allowedSecurityLevel, population, gamebuild FROM realmlist WHERE color <> 3 ORDER BY name"); ///- Circle through results and add them to the realm map if (result) @@ -98,6 +98,5 @@ void RealmList::UpdateRealms(bool init) if (init) sLog.outString("Added realm \"%s\".", fields[1].GetString()); } while(result->NextRow()); - delete result; } } |