diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-06-26 10:31:13 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-06-26 10:31:13 -0400 |
commit | 0c7c49483f53d8bc3da2d3e9ca62fc9810ccd05a (patch) | |
tree | bb76ecc606d91dc496f7ad7816667c32b186bb0a | |
parent | 2c49a9852dd7b8241f823ea0a0c8d90581518c7d (diff) | |
download | tor-0c7c49483f53d8bc3da2d3e9ca62fc9810ccd05a.tar.gz tor-0c7c49483f53d8bc3da2d3e9ca62fc9810ccd05a.zip |
Fix a coverity warning about a no-op assert with-64 bit size_t
This is CID 1403400
-rw-r--r-- | src/common/storagedir.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/storagedir.c b/src/common/storagedir.c index befcfe693f..4405731884 100644 --- 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; } |