mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
Fix a signed/unsigned comparison warning
This commit is contained in:
parent
373d9aff7a
commit
ad382049ed
@ -258,7 +258,7 @@ tor_mmap_file(const char *filename)
|
|||||||
page_size = getpagesize();
|
page_size = getpagesize();
|
||||||
size += (size%page_size) ? page_size-(size%page_size) : 0;
|
size += (size%page_size) ? page_size-(size%page_size) : 0;
|
||||||
|
|
||||||
if (st.st_size > SSIZE_T_CEILING || size < st.st_size) {
|
if (st.st_size > SSIZE_T_CEILING || (off_t)size < st.st_size) {
|
||||||
log_warn(LD_FS, "File \"%s\" is too large. Ignoring.",filename);
|
log_warn(LD_FS, "File \"%s\" is too large. Ignoring.",filename);
|
||||||
errno = EFBIG;
|
errno = EFBIG;
|
||||||
close(fd);
|
close(fd);
|
||||||
|
Loading…
Reference in New Issue
Block a user