Browse Source

sys_linux.c: Increase buffer size for /proc/self/status

Fixes #263
pull/2/head
Gleb Mazovetskiy 4 years ago committed by Alibek Omarov
parent
commit
33ba1f25f3
  1. 2
      engine/platform/linux/sys_linux.c

2
engine/platform/linux/sys_linux.c

@ -36,7 +36,7 @@ void Platform_Sleep( int msec ) @@ -36,7 +36,7 @@ void Platform_Sleep( int msec )
qboolean Sys_DebuggerPresent( void )
{
char buf[1024];
char buf[4096];
ssize_t num_read;
int status_fd;

Loading…
Cancel
Save