Check-in Number:
|
960 | |
Date: |
2001-Sep-12 16:35:14 (local)
2001-Sep-12 14:35:14 (UTC) |
User: | thl |
Branch: | |
Comment: |
fixed a memory leak |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/msg.c 1.17 -> 1.18
--- msg.c 2001/09/11 13:41:22 1.17
+++ msg.c 2001/09/12 14:35:14 1.18
@@ -163,6 +163,8 @@
cpHeaders = cpRem;
argz_add(&msg->azHeaders, &msg->asHeaders, cpName);
argz_add(&msg->azHeaders, &msg->asHeaders, cpValue);
+ free(cpName);
+ free(cpValue);
}
log0(msg, DEBUG, "check for headers we care about and do whatever neccessary");
|
|