mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 09:31:30 +00:00
Fixes #119
This commit is contained in:
parent
822a1b1003
commit
b0e24b346e
@ -2,6 +2,7 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
|||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
== 03/05/2014 ==
|
== 03/05/2014 ==
|
||||||
demonstar55: Corrected rogue's evade to be single target
|
demonstar55: Corrected rogue's evade to be single target
|
||||||
|
sorvani: fixed crash issue 119
|
||||||
|
|
||||||
== 03/04/2014 ==
|
== 03/04/2014 ==
|
||||||
Sorvani: Created RemoveFromInstance and RemoveAllFromInstance to remove a single player or all players in an instance.
|
Sorvani: Created RemoveFromInstance and RemoveAllFromInstance to remove a single player or all players in an instance.
|
||||||
|
|||||||
@ -2522,10 +2522,11 @@ bool Database::GetUnusedInstanceID(uint16 &instance_id)
|
|||||||
safe_delete_array(query);
|
safe_delete_array(query);
|
||||||
if (mysql_num_rows(result) != 0) {
|
if (mysql_num_rows(result) != 0) {
|
||||||
row = mysql_fetch_row(result);
|
row = mysql_fetch_row(result);
|
||||||
mysql_free_result(result);
|
|
||||||
if(atoi(row[0]) <= max) {
|
if(atoi(row[0]) <= max) {
|
||||||
count = atoi(row[0]);
|
count = atoi(row[0]);
|
||||||
|
mysql_free_result(result);
|
||||||
} else {
|
} else {
|
||||||
|
mysql_free_result(result);
|
||||||
if (RunQuery(query, MakeAnyLenString(&query, "SELECT id FROM instance_list where id > %u ORDER BY id", count), errbuf, &result)) {
|
if (RunQuery(query, MakeAnyLenString(&query, "SELECT id FROM instance_list where id > %u ORDER BY id", count), errbuf, &result)) {
|
||||||
safe_delete_array(query);
|
safe_delete_array(query);
|
||||||
if (mysql_num_rows(result) != 0) {
|
if (mysql_num_rows(result) != 0) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user