diff options
author | jbj <devnull@localhost> | 1999-09-21 17:21:57 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-09-21 17:21:57 +0000 |
commit | e6318cc57f9581393d6cb534e3dece38b87aa3cb (patch) | |
tree | 9de6993179cceb5c262b8a205ed5d8b98c03a4f7 /popt | |
parent | 20d78e939aa218e85ef19013769494851d863f13 (diff) | |
download | librpm-tizen-e6318cc57f9581393d6cb534e3dece38b87aa3cb.tar.gz librpm-tizen-e6318cc57f9581393d6cb534e3dece38b87aa3cb.tar.bz2 librpm-tizen-e6318cc57f9581393d6cb534e3dece38b87aa3cb.zip |
fix: removed files fingerprint memory leak.
fix: resurrect allfiles flag from rpm-2.5.x.
CVS patchset: 3312
CVS date: 1999/09/21 17:21:57
Diffstat (limited to 'popt')
-rw-r--r-- | popt/po/popt.pot | 2 | ||||
-rw-r--r-- | popt/poptconfig.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/popt/po/popt.pot b/popt/po/popt.pot index e4f1f94f3..88480850b 100644 --- a/popt/po/popt.pot +++ b/popt/po/popt.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 1999-09-04 10:55-0400\n" +"POT-Creation-Date: 1999-09-21 14:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/popt/poptconfig.c b/popt/poptconfig.c index ea670e78b..9d9b49572 100644 --- a/popt/poptconfig.c +++ b/popt/poptconfig.c @@ -55,7 +55,7 @@ static void configLine(poptContext con, char * line) { alias.longName = longName, alias.shortName = shortName; poptAddAlias(con, alias, 0); } else if (!strcmp(entryType, "exec")) { - con->execs = realloc(con->execs, + con->execs = realloc(con->execs, /* XXX memory leak */ sizeof(*con->execs) * (con->numExecs + 1)); if (longName) con->execs[con->numExecs].longName = strdup(longName); |