08.01.2013, 21:00
That's odd. My server never crashed on 'gmx'. :\
This is probably the fix (I haven't tested yet):
This is probably the fix (I haven't tested yet):
Код:
int StrAmx::Get(AMX* amx, cell param, char*& dest) { cell *ptr; int len; amx_GetAddr(amx, param, &ptr); amx_StrLen(ptr, &len); dest = (char*)malloc((len * sizeof(char))+1); if (dest == NULL) return 0; // FIX amx_GetString(dest, ptr, 0, UNLIMITED); dest[len] = '\0'; return len; }