From 335548e77b8425a6fa3611315ab9ba8e3c4da0cb Mon Sep 17 00:00:00 2001 From: John McNamara Date: Thu, 16 Jan 2020 01:21:22 +0000 Subject: [PATCH] Fix for valgrind warning. --- src/worksheet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/worksheet.c b/src/worksheet.c index 1338c5c3..953ea630 100644 --- a/src/worksheet.c +++ b/src/worksheet.c @@ -2696,7 +2696,7 @@ lxw_worksheet_prepare_vml_objects(lxw_worksheet *self, }; /* If this allocation fails it will be dealt with in packager.c. */ - vml_data_id_str = calloc(1, data_str_len); + vml_data_id_str = calloc(1, data_str_len + 2); GOTO_LABEL_ON_MEM_ERROR(vml_data_id_str, mem_error); /* Create the CSV list in the allocated space. */