summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2009-09-26 23:01:55 +0000
committerPaul Smith <psmith@gnu.org>2009-09-26 23:01:55 +0000
commit44ac2cdb4dc8481cff33101f95f94761c5aa74bc (patch)
treed106bad507197e5a1c680ab4d9604549f40ed537
parent48045f99e574d1d8e049a413f5b3f40d33898dc2 (diff)
downloadgunmake-44ac2cdb4dc8481cff33101f95f94761c5aa74bc.tar.gz
Fix some memory leaks, found with valgrind.
-rw-r--r--ChangeLog6
-rw-r--r--function.c1
-rw-r--r--read.c21
3 files changed, 23 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 545ea53..66ce7f3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-09-26 Paul Smith <psmith@gnu.org>
+
+ * read.c (record_files): Free FILENAMES chain for implicit rules.
+
+ * function.c (string_glob): Free NAME in the nameseq chain.
+
2009-09-25 Boris Kolpackov <boris@codesynthesis.com>
* implicit.c (pattern_search): Terminate early if we haven't
diff --git a/function.c b/function.c
index a2adc31..d3acd8b 100644
--- a/function.c
+++ b/function.c
@@ -382,6 +382,7 @@ string_glob (char *line)
idx += len;
result[idx++] = ' ';
+ free (chain->name);
free (chain);
chain = next;
}
diff --git a/read.c b/read.c
index 87bb046..55b26e8 100644
--- a/read.c
+++ b/read.c
@@ -566,8 +566,8 @@ eval (struct ebuffer *ebuf, int set_default)
record_files (filenames, pattern, pattern_percent, depstr, \
cmds_started, commands, commands_idx, two_colon, \
&fi); \
+ filenames = 0; \
} \
- filenames = 0; \
commands_idx = 0; \
no_targets = 0; \
pattern = 0; \
@@ -1935,8 +1935,13 @@ record_files (struct nameseq *filenames, const char *pattern,
if (pattern != 0)
fatal (flocp, _("mixed implicit and static pattern rules"));
- /* Create an array of target names */
- for (c = 1, nextf = filenames->next; nextf; ++c, nextf = nextf->next)
+ /* Count the targets to create an array of target names.
+ We already have the first one. */
+ nextf = filenames->next;
+ free (filenames);
+ filenames = nextf;
+
+ for (c = 1; nextf; ++c, nextf = nextf->next)
;
targets = xmalloc (c * sizeof (const char *));
target_pats = xmalloc (c * sizeof (const char *));
@@ -1944,9 +1949,10 @@ record_files (struct nameseq *filenames, const char *pattern,
targets[0] = name;
target_pats[0] = implicit_percent;
- for (c = 1, nextf = filenames->next; nextf; ++c, nextf = nextf->next)
+ c = 1;
+ while (filenames)
{
- name = nextf->name;
+ name = filenames->name;
implicit_percent = find_percent_cached (&name);
if (implicit_percent == 0)
@@ -1954,6 +1960,11 @@ record_files (struct nameseq *filenames, const char *pattern,
targets[c] = name;
target_pats[c] = implicit_percent;
+ ++c;
+
+ nextf = filenames->next;
+ free (filenames);
+ filenames = nextf;
}
create_pattern_rule (targets, target_pats, c, two_colon, deps, cmds, 1);