--------------------- PatchSet 3664 Date: 2006/09/02 23:27:42 Author: hno Branch: valgrind Tag: (none) Log: Spelling correction Members: lib/MemPool.cc:1.3.4.1->1.3.4.2 Index: squid3/lib/MemPool.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/lib/MemPool.cc,v retrieving revision 1.3.4.1 retrieving revision 1.3.4.2 diff -u -r1.3.4.1 -r1.3.4.2 --- squid3/lib/MemPool.cc 2 Sep 2006 22:05:52 -0000 1.3.4.1 +++ squid3/lib/MemPool.cc 2 Sep 2006 23:27:42 -0000 1.3.4.2 @@ -1,6 +1,6 @@ /* - * $Id: MemPool.cc,v 1.3.4.1 2006/09/02 22:05:52 hno Exp $ + * $Id: MemPool.cc,v 1.3.4.2 2006/09/02 23:27:42 hno Exp $ * * DEBUG: section 63 Low Level Memory Pool Management * AUTHOR: Alex Rousskov, Andres Kroonmaa, Robert Collins @@ -208,7 +208,7 @@ for (int i = 1; i < pool->chunk_capacity; i++) { *Free = (void *) ((char *) Free + pool->obj_size); - void *nexFree = (void **)*Free; + void **nextFree = (void **)*Free; (void) VALGRIND_MAKE_NOACCESS(Free, pool->obj_size); Free = nextFree; }