diff options
author | Christian Grothoff <christian@grothoff.org> | 2012-09-03 14:02:48 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2012-09-03 14:02:48 +0000 |
commit | 864bea070af30ab3c763f110a323fa7b128e4038 (patch) | |
tree | d76793e672b75f0b42bd9dae6811df3dfe778537 | |
parent | 2407969d2ce852aaf2a25441a91fc8f8f475d880 (diff) | |
download | libextractor-864bea070af30ab3c763f110a323fa7b128e4038.tar.gz libextractor-864bea070af30ab3c763f110a323fa7b128e4038.zip |
another leak
-rw-r--r-- | src/plugins/ps_extractor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/ps_extractor.c b/src/plugins/ps_extractor.c index 987c76d..0077261 100644 --- a/src/plugins/ps_extractor.c +++ b/src/plugins/ps_extractor.c | |||
@@ -177,6 +177,7 @@ EXTRACTOR_ps_extract_method (struct EXTRACTOR_ExtractContext *ec) | |||
177 | strcat (acc, next + 3); | 177 | strcat (acc, next + 3); |
178 | free (line); | 178 | free (line); |
179 | line = acc; | 179 | line = acc; |
180 | free (next); | ||
180 | next = readline (ec); | 181 | next = readline (ec); |
181 | } | 182 | } |
182 | if ( (line[strlen (line) - 1] == ')') && | 183 | if ( (line[strlen (line) - 1] == ')') && |