aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changes/bug23266
-rw-r--r--src/common/util.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/changes/bug2326 b/changes/bug2326
new file mode 100644
index 000000000..239a383fa
--- /dev/null
+++ b/changes/bug2326
@@ -0,0 +1,6 @@
+ o Minor bugfixes
+ - Fix a bug where we would assert if we ever had a
+ cached-descriptors.new file (or another file read directly into
+ memory) of exactly SIZE_T_CEILING bytes. Found by doors; fixes
+ bug 2326; bugfix on 0.2.1.25.
+
diff --git a/src/common/util.c b/src/common/util.c
index c7282e733..abd87ea65 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -2140,7 +2140,7 @@ read_file_to_str(const char *filename, int flags, struct stat *stat_out)
return NULL;
}
- if ((uint64_t)(statbuf.st_size)+1 > SIZE_T_CEILING)
+ if ((uint64_t)(statbuf.st_size)+1 >= SIZE_T_CEILING)
return NULL;
string = tor_malloc((size_t)(statbuf.st_size+1));