SA-MP Forums Archive
MySQL R41-4 ERROR! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: MySQL R41-4 ERROR! (/showthread.php?tid=645423)



MySQL R41-4 ERROR! - DimaShift - 26.11.2017

Hi!
a problem occurred on the plugin ...
Код:
[11/26/17 10:31:19] [ERROR] signal 11 (SIGSEGV) catched; shutting log-core down (errno: 0, signal code: 2, exit status: 108)
does anyone know how to fix it?


Re: MySQL R41-4 ERROR! - Konewka - 28.11.2017

This error refers to a segmentation fault, which basically means you are trying to access illegal memory, or a memory not assigned to your array. Furthermore, you cannot access foo[1000] if you only allocated foo[999] in the memory. This issue is similar to the common "array out of bounds" error.