Check-in Number:
|
3208 | |
Date: |
2003-Feb-11 10:35:22 (local)
2003-Feb-11 09:35:22 (UTC) |
User: | thl |
Branch: | |
Comment: |
darn memory leak |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/lmtp2nntp_option.c 1.25 -> 1.26
--- lmtp2nntp_option.c 2003/02/11 09:02:42 1.25
+++ lmtp2nntp_option.c 2003/02/11 09:35:22 1.26
@@ -643,6 +643,8 @@
}
if (o->vo != NULL)
val_destroy(o->vo);
+ if (o->pt != NULL)
+ free(o->pt);
free(o);
return OPTION_OK;
|
|