From 43a31a81fa4eafb105c76edd052206ef68886bed Mon Sep 17 00:00:00 2001 From: Peter Howkins Date: Tue, 3 Jul 2018 18:54:16 +0100 Subject: [PATCH] dtstyle: Coverity 87251 --- cde/programs/dtstyle/ColorFile.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cde/programs/dtstyle/ColorFile.c b/cde/programs/dtstyle/ColorFile.c index 564ab169..28bc4287 100644 --- a/cde/programs/dtstyle/ColorFile.c +++ b/cde/programs/dtstyle/ColorFile.c @@ -526,7 +526,10 @@ WriteOutDesc( if (hm_pl_DB ) XrmPutFileDatabase(hm_pl_DB, desc_file); /* make the file read, write */ - chmod(desc_file,438); + if(chmod(desc_file,438) == -1) { + fprintf(stderr, "failed to chmod '%s', %s\n", desc_file, strerror(errno)); + } + XtFree(desc_file); XtFree(desc_name); -- 2.25.1