dgaudet 99/08/06 09:21:34
Modified: src CHANGES
src/main http_config.c
Log:
Fix a memory leak where the module counts were getting messed
up across restarts.
Submitted by: David Harris <[EMAIL PROTECTED]>
Revision Changes Path
1.1411 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1410
retrieving revision 1.1411
diff -u -r1.1410 -r1.1411
--- CHANGES 1999/08/06 01:37:56 1.1410
+++ CHANGES 1999/08/06 16:21:28 1.1411
@@ -1,5 +1,8 @@
Changes with Apache 1.3.8
+ *) Fix a memory leak where the module counts were getting messed
+ up across restarts. [David Harris <[EMAIL PROTECTED]>]
+
*) CIDR addresses such as a.b.c.d/24 where d != 0 weren't handled
properly in mod_access.
["Paul J. Reder" <[EMAIL PROTECTED]>] PR#4770
1.146 +1 -0 apache-1.3/src/main/http_config.c
Index: http_config.c
===================================================================
RCS file: /home/cvs/apache-1.3/src/main/http_config.c,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- http_config.c 1999/05/07 00:16:11 1.145
+++ http_config.c 1999/08/06 16:21:33 1.146
@@ -625,6 +625,7 @@
m->module_index = -1; /* simulate being unloaded, should
* be unnecessary */
dynamic_modules--;
+ total_modules--;
}
API_EXPORT(void) ap_add_loaded_module(module *mod)