[dovecot-cvs] dovecot/src/lib file-cache.c,1.15,1.16
tss at dovecot.org
tss at dovecot.org
Sat Nov 18 23:35:39 UTC 2006
Update of /var/lib/cvs/dovecot/src/lib
In directory talvi:/tmp/cvs-serv10149
Modified Files:
file-cache.c
Log Message:
And accidentally reverted the first buffer overflow fix in the second
commit..
Index: file-cache.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/file-cache.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- file-cache.c 18 Nov 2006 23:26:19 -0000 1.15
+++ file-cache.c 18 Nov 2006 23:35:37 -0000 1.16
@@ -128,8 +128,8 @@
i_assert(psize > 0);
bits = buffer_get_space_unsafe(cache->page_bitmask, 0,
- poffset / CHAR_BIT +
- (psize + CHAR_BIT - 1) / CHAR_BIT);
+ (poffset + psize + CHAR_BIT - 1) /
+ CHAR_BIT);
dest_offset = poffset * page_size;
dest = PTR_OFFSET(cache->mmap_base, dest_offset);
More information about the dovecot-cvs
mailing list