[w3m-dev 03942] Save history
[email protected] (Takahashi Youichirou)
| Newsgroups | gmane.comp.web.w3m.devel |
|---|---|
| Message-ID | <[email protected]> |
.w3m/history
disk full
--
diff -u history.c.orig history.c
--- history.c.orig Thu Feb 6 01:43:57 2003
+++ history.c Sun Jul 20 21:41:04 2003
@@ -72,7 +72,10 @@
size++;
for (; item; item = item->next)
fprintf(f, "%s\n", (char *)item->ptr);
- fclose(f);
+ if (fclose(f) == EOF) {
+ disp_err_message("Can't save history", FALSE);
+ return;
+ }
rename(tmpf, rcFile(HISTORY_FILE));
}
#endif /* USE_HISTORY */