libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit a1516864b3bb37b610c53516f17a609d64ae4c7e
parent cabd42938ab9a1c6beb9137cd710b72968c45bcd
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  3 Sep 2012 13:40:44 +0000

-fix leak

Diffstat:
Msrc/plugins/ps_extractor.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/plugins/ps_extractor.c b/src/plugins/ps_extractor.c @@ -208,6 +208,8 @@ EXTRACTOR_ps_extract_method (struct EXTRACTOR_ExtractContext *ec) } free (line); } + if (NULL != next) + free (next); } /* end of ps_extractor.c */