|
From: <sv...@va...> - 2014-08-18 20:55:32
|
Author: florian
Date: Mon Aug 18 20:55:25 2014
New Revision: 14311
Log:
Yet another spot where I missed to change the initialisation of the
directory name.
Modified:
branches/BUF_REMOVAL/callgrind/dump.c
Modified: branches/BUF_REMOVAL/callgrind/dump.c
==============================================================================
--- branches/BUF_REMOVAL/callgrind/dump.c (original)
+++ branches/BUF_REMOVAL/callgrind/dump.c Mon Aug 18 20:55:25 2014
@@ -462,7 +462,7 @@
p->line = 0;
}
if (! found_dirname) {
- dir[0] = '\0';
+ dir = (HChar *)"???"; // FIXME: constification
}
p->file = CLG_(get_file_node)(bbcc->bb->obj, dir, file);
|