diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-12-18 12:07:48 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-12-18 12:07:48 +0200 |
commit | a631616ce168756f10e58863b053d630dd06a9b4 (patch) | |
tree | a29cc09a8e35cd4a2ccb1bd76963ff783cd3a51d /rpmqv.c | |
parent | bb61fa21e8d93f74a568aec7426e086330d276b9 (diff) | |
download | librpm-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |