From: Simon Marlow Date: Fri, 10 Dec 2010 09:39:06 +0000 (+0000) Subject: allocate enough room for the longer filename (addendum to #4512) X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=a201afd3d2c4bef07e4e7682b129f60dbdde0e8a allocate enough room for the longer filename (addendum to #4512) --- diff --git a/rts/eventlog/EventLog.c b/rts/eventlog/EventLog.c index 71b3484..fec34b9 100644 --- a/rts/eventlog/EventLog.c +++ b/rts/eventlog/EventLog.c @@ -174,7 +174,9 @@ initEventLogging(void) StgWord8 t, c; nat n_caps; - event_log_filename = stgMallocBytes(strlen(prog_name) + 10, + event_log_filename = stgMallocBytes(strlen(prog_name) + + 10 /* .%d */ + + 10 /* .eventlog */, "initEventLogging"); if (sizeof(EventDesc) / sizeof(char*) != NUM_EVENT_TAGS) {