diff options
Diffstat (limited to '')
-rw-r--r-- | recovery.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/recovery.cpp b/recovery.cpp index a3c4053c1..88fedc857 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -510,10 +510,12 @@ finish_recovery() { if (has_cache) { LOGI("Saving locale \"%s\"\n", locale); FILE* fp = fopen_path(LOCALE_FILE, "w"); - fwrite(locale, 1, len, fp); - fflush(fp); - fsync(fileno(fp)); - check_and_fclose(fp, LOCALE_FILE); + if (fp != NULL) { + fwrite(locale, 1, len, fp); + fflush(fp); + fsync(fileno(fp)); + check_and_fclose(fp, LOCALE_FILE); + } } } |