foxygit / doom Log in
commit 9d60c396b5c9a86e7f189fbb2afad675f42b05b3
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Thu Nov 16 00:05:44 2006 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Thu Nov 16 00:05:44 2006 +0000

    Increase buffer size to fixes crashes due to buffer overruns.

    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 754
---
 src/net_gui.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/net_gui.c b/src/net_gui.c
index a52ab184..c1610caf 100644
--- a/src/net_gui.c
+++ b/src/net_gui.c
@@ -103,7 +103,7 @@ static void BuildGUI(void)
 static void UpdateGUI(void)
 {
     txt_window_action_t *startgame;
-    char buf[20];
+    char buf[50];
     unsigned int i;

     for (i=0; i<MAXPLAYERS; ++i)