dtstyle: Coverity 87251

This commit is contained in:
Peter Howkins 2018-07-03 18:54:16 +01:00
parent 8b39102f31
commit 43a31a81fa
1 changed files with 4 additions and 1 deletions

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