Merge pull request #281 from sjmulder/pr/fwrite

Don't ignore fwrite errors
This commit is contained in:
Mischievous Meerkat 2019-06-13 05:20:54 +05:30 committed by GitHub
commit f0b00c9fbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -745,9 +745,9 @@ static void writecp(const char *buf, const size_t buflen)
return;
FILE *fp = fopen(g_cppath, "w");
if (fp) {
fwrite(buf, 1, buflen, fp);
if (fwrite(buf, 1, buflen, fp) != buflen)
printwarn(NULL);
fclose(fp);
} else
printwarn(NULL);