summaryrefslogtreecommitdiff
path: root/rpmqv.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-12-18 12:07:48 +0200
committerPanu Matilainen <pmatilai@redhat.com>2007-12-18 12:07:48 +0200
commita631616ce168756f10e58863b053d630dd06a9b4 (patch)
treea29cc09a8e35cd4a2ccb1bd76963ff783cd3a51d /rpmqv.c
parentbb61fa21e8d93f74a568aec7426e086330d276b9 (diff)
downloadlibrpm-tizen-a631616ce168756f10e58863b053d630dd06a9b4.tar.gz
librpm-tizen-a631616ce168756f10e58863b053d630dd06a9b4.tar.bz2
librpm-tizen-a631616ce168756f10e58863b053d630dd06a9b4.zip
Use constfree on relocations for now
- they're totally exposed all they way to rpmqv.c.. eww
Diffstat (limited to 'rpmqv.c')
-rw-r--r--rpmqv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmqv.c b/rpmqv.c
index 4251b7983..368099982 100644
--- a/rpmqv.c
+++ b/rpmqv.c
@@ -869,7 +869,7 @@ exit:
#ifdef IAM_RPMEIU
if (ia->relocations != NULL)
for (i = 0; i < ia->numRelocations; i++)
- ia->relocations[i].oldPath = _free(ia->relocations[i].oldPath);
+ ia->relocations[i].oldPath = _constfree(ia->relocations[i].oldPath);
ia->relocations = _free(ia->relocations);
#endif