summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bootchart/svg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootchart/svg.c b/src/bootchart/svg.c
index 231d3daa80..cd896895c9 100644
--- a/src/bootchart/svg.c
+++ b/src/bootchart/svg.c
@@ -392,7 +392,7 @@ static void svg_pss_graph(void) {
svg("\n\n<!-- PSS map - csv format -->\n");
ps = ps_first;
while (ps->next_ps) {
- char _cleanup_free_*enc_name;
+ char _cleanup_free_ *enc_name = NULL;
ps = ps->next_ps;
if (!ps)
continue;
@@ -818,7 +818,7 @@ static void svg_ps_bars(void) {
/* pass 2 - ps boxes */
ps = ps_first;
while ((ps = get_next_ps(ps))) {
- char _cleanup_free_*enc_name;
+ char _cleanup_free_ *enc_name = NULL;
double starttime;
int t;