From 0f87b893549ed765f799c47a371ad5cfb0ffde02 Mon Sep 17 00:00:00 2001 From: Peter Howkins Date: Tue, 3 Jul 2018 18:25:03 +0100 Subject: [PATCH] dticon: fix for \n being truncated by snprintf off end of error message --- cde/programs/dticon/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cde/programs/dticon/utils.c b/cde/programs/dticon/utils.c index 49654fb9..a4324ade 100644 --- a/cde/programs/dticon/utils.c +++ b/cde/programs/dticon/utils.c @@ -2292,8 +2292,8 @@ SaveSession( void ) if ((fd = creat(path, S_IRUSR | S_IRGRP | S_IWUSR | S_IWGRP)) == -1) { tmpStr = GETSTR(16,24, "Couldn't save session to file"); - tmpStr2 = (char *)XtMalloc(strlen(tmpStr) + strlen(path)+ 3); - snprintf(tmpStr2, strlen(tmpStr) + strlen(path) + 3, "%s: %s\n", tmpStr, path); + tmpStr2 = (char *)XtMalloc(strlen(tmpStr) + strlen(path) + 4); /* +4 = ':', ' ', '\n' and '\0' */ + snprintf(tmpStr2, strlen(tmpStr) + strlen(path) + 4, "%s: %s\n", tmpStr, path); _DtSimpleErrnoError(progName, DtError, NULL, tmpStr2, NULL); XtFree(tmpStr2); XtFree ((char *)path); -- 2.25.1