1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

dtstyle: Coverity 87251

This commit is contained in:
Peter Howkins 2018-07-03 18:54:16 +01:00
parent 8b39102f31
commit 43a31a81fa

View file

@ -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);