mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- 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:
parent
6c07d765db
commit
e07f64a23a
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ static struct {
|
|||
pid_t pid;
|
||||
int has_siginfo;
|
||||
siginfo_t siginfo;
|
||||
char buf[1024];
|
||||
char buf[4096];
|
||||
} crash_info;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue