summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2020-02-07 14:58:55 -0500
committerChet Ramey <chet.ramey@case.edu>2020-02-07 14:58:55 -0500
commitc5ad6be530f5c1daf64a2d20df4baba9f6b57aa4 (patch)
tree6d9264bda0e05a16ffef8486fd45b7d7ca749d8c
parentf5720c8cabbdb2387b4dc9e36633a73df6a634da (diff)
downloadreadline-c5ad6be530f5c1daf64a2d20df4baba9f6b57aa4.tar.gz
problems restoring the history file are not signaled correctly to the calling application
-rw-r--r--histfile.c2
-rw-r--r--patchlevel2
2 files changed, 3 insertions, 1 deletions
diff --git a/histfile.c b/histfile.c
index 6c3adc9..8eb3496 100644
--- a/histfile.c
+++ b/histfile.c
@@ -620,6 +620,7 @@ history_truncate_file (const char *fname, int lines)
if (rv != 0)
{
+ rv = errno;
if (tempname)
unlink (tempname);
history_lines_written_to_file = 0;
@@ -767,6 +768,7 @@ mmap_error:
if (rv != 0)
{
+ rv = errno;
if (tempname)
unlink (tempname);
history_lines_written_to_file = 0;
diff --git a/patchlevel b/patchlevel
index ce3e355..626a945 100644
--- a/patchlevel
+++ b/patchlevel
@@ -1,3 +1,3 @@
# Do not edit -- exists only for use by patch
-3
+4