commit 82a68be69a696e8aa96203ad00d1f0cda24fee4f
parent acbe16a9a244d9745080ca435cc3587412920caa
Author: Nick Mathewson <nickm@torproject.org>
Date: Mon, 26 Jun 2017 10:32:57 -0400
Merge branch 'maint-0.3.1'
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/common/storagedir.c b/src/common/storagedir.c
@@ -210,7 +210,9 @@ storage_dir_read(storage_dir_t *d, const char *fname, int bin, size_t *sz_out)
char *contents = read_file_to_str(path, flags, &st);
if (contents && sz_out) {
// it fits in RAM, so we know its size is less than SIZE_MAX
+#if UINT64_MAX > SIZE_MAX
tor_assert((uint64_t)st.st_size <= SIZE_MAX);
+#endif
*sz_out = (size_t) st.st_size;
}