diff -Nru squid-1.0.beta10/ChangeLog squid-1.0.beta11/ChangeLog --- squid-1.0.beta10/ChangeLog Fri May 31 08:43:57 1996 +++ squid-1.0.beta11/ChangeLog Sat Jun 1 00:51:15 1996 @@ -203,7 +203,7 @@ - Fixed ftpget listing parsing coredump bug. - Fixed neighborsUdpAck() coredump for late-arriving ICP replies. -beta10: +Changes to squid-1.0.beta10 (May 31, 1996): - Fixed bug when request arrives in fragmented IP packets. - Fixed ACL bug which denied cache manager access while in @@ -216,10 +216,14 @@ - Changed domain ACL's to match only the end of the hostname, not just anywhere in the string. - Fixed setuid bugs when pid_filename was not defined - - Possible bug fix of zero-sized object getting stuck in VM. + - Fixed zero-sized object getting stuck in VM. - Configure checks for working UNIX domain stream sockets - Rotate cache.log before the others - SIGUSR2 now toggles between full and normal debugging - Close and restart ftpget server during logfile rotation - Added memory pools for request_t and MemObject data structures. - Added new address binding options for more control + +Changes to squid-1.0.beta11 (June 1, 1996): + + - Fixed serious memory leak of MemObject->reply structures. diff -Nru squid-1.0.beta10/include/version.h squid-1.0.beta11/include/version.h --- squid-1.0.beta10/include/version.h Wed May 29 10:41:31 1996 +++ squid-1.0.beta11/include/version.h Sat Jun 1 00:51:28 1996 @@ -1,7 +1,7 @@ -/* $Id: version.h,v 1.19.4.9 1996/05/29 17:41:31 wessels Exp $ +/* $Id: version.h,v 1.19.4.10 1996/06/01 07:51:28 wessels Exp $ * * SQUID_VERSION - String for version id of this distribution */ #ifndef SQUID_VERSION -#define SQUID_VERSION "1.0.beta10" +#define SQUID_VERSION "1.0.beta11" #endif diff -Nru squid-1.0.beta10/src/store.c squid-1.0.beta11/src/store.c --- squid-1.0.beta10/src/store.c Thu May 30 14:16:55 1996 +++ squid-1.0.beta11/src/store.c Sat Jun 1 00:49:38 1996 @@ -1,5 +1,5 @@ -/* $Id: store.c,v 1.61.4.38 1996/05/30 21:16:55 wessels Exp $ */ +/* $Id: store.c,v 1.61.4.39 1996/06/01 07:49:38 wessels Exp $ */ /* * DEBUG: Section 20 store @@ -381,7 +381,7 @@ } safe_free(e->mem_obj->client_list); } - put_free_mem_obj(e->mem_obj); + destroy_MemObject(e->mem_obj); e->mem_obj = NULL; }