- Increase the SDL crashinfo char buffer to 4 KB.

This helps the crash catcher when there are numerous wad files, for which it's possible that either the wad list, the map or the position is truncated. A more reliable alternative to this should be allocating the char buffer, but I never heard about a way to do this reliably during signal handling.
This commit is contained in:
Edoardo Prezioso 2015-04-02 13:19:48 +02:00
parent 6c07d765db
commit e07f64a23a

View file

@ -37,7 +37,7 @@ static struct {
pid_t pid;
int has_siginfo;
siginfo_t siginfo;
char buf[1024];
char buf[4096];
} crash_info;