mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-24 13:55:36 +03:00
added silent backwards compatibility for a broken plugin
This commit is contained in:
parent
57160763af
commit
73386b12c5
@ -213,6 +213,10 @@ static cell AMX_NATIVE_CALL dbi_field(AMX *amx, cell *params)
|
|||||||
}
|
}
|
||||||
|
|
||||||
IResultSet *rs = oldrs->info.rs;
|
IResultSet *rs = oldrs->info.rs;
|
||||||
|
if (rs->IsDone())
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
IResultRow *rr = rs->GetRow();
|
IResultRow *rr = rs->GetRow();
|
||||||
unsigned int num = (unsigned int)params[2] - 1;
|
unsigned int num = (unsigned int)params[2] - 1;
|
||||||
if (num >= rs->FieldCount())
|
if (num >= rs->FieldCount())
|
||||||
@ -263,6 +267,10 @@ static cell AMX_NATIVE_CALL dbi_result(AMX *amx, cell *params)
|
|||||||
}
|
}
|
||||||
|
|
||||||
IResultSet *rs = oldrs->info.rs;
|
IResultSet *rs = oldrs->info.rs;
|
||||||
|
if (rs->IsDone())
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
IResultRow *rr = rs->GetRow();
|
IResultRow *rr = rs->GetRow();
|
||||||
unsigned int num;
|
unsigned int num;
|
||||||
bool found = false;
|
bool found = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user