From: Panu Matilainen Date: Sun, 16 Dec 2007 10:20:45 +0000 (+0200) Subject: IDT* structures are exposed, let them use constfree for now.. X-Git-Tag: tznext/4.11.0.1.tizen20130304~4808 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c002a4c8b0fe71a4ae4685e0fa7f9ddad17fda5;p=tools%2Flibrpm-tizen.git IDT* structures are exposed, let them use constfree for now.. --- diff --git a/lib/idtx.c b/lib/idtx.c index 026c152..f4c2031 100644 --- a/lib/idtx.c +++ b/lib/idtx.c @@ -24,7 +24,7 @@ IDTX IDTXfree(IDTX idtx) for (i = 0; i < idtx->nidt; i++) { IDT idt = idtx->idt + i; idt->h = headerFree(idt->h); - idt->key = _free(idt->key); + idt->key = _constfree(idt->key); } idtx->idt = _free(idtx->idt); idtx = _free(idtx);