aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 884d6da..b22d6f4 100644
--- a/main.c
+++ b/main.c
@@ -584,12 +584,12 @@ read_portage_file(const char *file, enum portage_file_type type, void *data)
void *e;
snprintf(npath, sizeof(npath), "%s:%zu:%zu-%zu",
file, line, cbeg, cend);
- p = xstrdup(npath);
/* if not necessary, but do it for static code analysers
* which take into accound that add_set_value might
* allocate a new set when masks would be NULL -- a case
* which would never happen */
if (masks != NULL) {
+ p = xstrdup(npath);
add_set_value(buf, p, &e, masks);
if (e != NULL)
free(p);