allocate enough room for the longer filename (addendum to #4512)
authorSimon Marlow <marlowsd@gmail.com>
Fri, 10 Dec 2010 09:39:06 +0000 (09:39 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Fri, 10 Dec 2010 09:39:06 +0000 (09:39 +0000)
rts/eventlog/EventLog.c

index 71b3484..fec34b9 100644 (file)
@@ -174,7 +174,9 @@ initEventLogging(void)
     StgWord8 t, c;
     nat n_caps;
 
     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) {
                                         "initEventLogging");
 
     if (sizeof(EventDesc) / sizeof(char*) != NUM_EVENT_TAGS) {