diff options
author | jbj <devnull@localhost> | 2001-01-01 23:14:47 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-01-01 23:14:47 +0000 |
commit | fa3e119a8350665f9c8d98929e4ceed041c4c3f3 (patch) | |
tree | 43c1a3792586dabb1eee5aa2ad05e9b1010cb4ab /python | |
parent | f2f0eb928e912e49baec2970529f74980d16aab1 (diff) | |
download | librpm-tizen-fa3e119a8350665f9c8d98929e4ceed041c4c3f3.tar.gz librpm-tizen-fa3e119a8350665f9c8d98929e4ceed041c4c3f3.tar.bz2 librpm-tizen-fa3e119a8350665f9c8d98929e4ceed041c4c3f3.zip |
- use popt autohelp for rpm helper binaries.
CVS patchset: 4396
CVS date: 2001/01/01 23:14:47
Diffstat (limited to 'python')
-rw-r--r-- | python/rpmmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/rpmmodule.c b/python/rpmmodule.c index 034f62d35..f6778be3e 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -417,7 +417,7 @@ static void mungeFilelist(Header h) headerAddEntry(h, RPMTAG_OLDFILENAMES, RPM_STRING_ARRAY_TYPE, fileNames, count); - xfree(fileNames); + free((void *)fileNames); } static int psGetArchScore(Header h) { |