-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server Crashed #2159
Comments
This is a bit of a weird one, somehow dataLength is overflowing. Think figuring this one out is a bit over my head sadly. fivem/code/components/citizen-resources-core/src/StateBagComponent.cpp Lines 636 to 641 in b972aa2
|
Is it due to too much data contained in the statebag? |
How state-bags are serialized is a bit rough, e.g., #1854 (comment). Even the edgiest of cases, e.g., key length serialized as a One potential reproduction (works on my machine, YMMV): local BufferLimit = 131072
local Overflow = 13
local key = string.rep("y", BufferLimit + Overflow)
local value = string.rep("\0", Overflow - 1)
SetStateBagValue("global", key, value, #value, true) |
Hi, we are having the same problem on Linux Server. Random people crashing our server. Can we change it on linux? |
Question: Is there an ETA when a new linux build will be released? |
I have a question, how to debug like that, I run dump file in vs 2022 and got error |
Add the symbol server |
Thanks |
My server has been experiencing random crashes so I decided to run procdump on the process and wait until a crash is triggered. I ran the dump file produced from procdump and got the following
Unhandled exception at 0xc0000005
Running FXServer 6624 on Windows Server 2022
Link to download .dmp: https://drive.google.com/file/d/1j2n2NmNeAL7uzL_xpwOh25z47qw85pTS/view
The text was updated successfully, but these errors were encountered: