Bug #524
Memory leak - patch attached
| Status: | Fixed | Start: | ||
| Priority: | Normal | Due date: | ||
| Assigned to: | - | % Done: | 0% |
|
| Category: | core | |||
| Target version: | - | |||
| Pending: | Resolution: | fixed |
||
Description
Some buffers that were not freed in server_free() from server.c:
--- /shared/tst/lighttpd-1.4.10/src/server.c 2006-02-01 06:50:00.000000000 -0500
+++ server.c 2006-02-14 12:40:00.000000000 -0500
@@ -218,6 +218,8 @@
CLEAN(srvconf.event_handler);
CLEAN(srvconf.pid_file);
CLEAN(srvconf.modules_dir);
+ CLEAN(srvconf.network_backend);
+ CLEAN(srvconf.upload_tempdirs);
CLEAN(tmp_chunk_len);
#undef CLEAN
Associated revisions
fixed end of life memleaks (fixes #524)