Mop up leftovers from rpmteFI()

This should've been in commit 6fcdaefef5
This commit is contained in:
Panu Matilainen 2022-08-10 13:36:27 +03:00
parent 8f922eb38a
commit a7c3886b35
1 changed files with 0 additions and 3 deletions

View File

@ -58,7 +58,6 @@ struct rpmte_s {
rpmds supplements; /*!< Supplements: dependencies. */
rpmds enhances; /*!< Enhances: dependencies. */
rpmfiles files; /*!< File information. */
rpmfi fi; /*!< File iterator (backwards compat) */
rpmps probs; /*!< Problems (relocations) */
rpmts ts; /*!< Parent transaction */
@ -243,7 +242,6 @@ rpmte rpmteFree(rpmte te)
free(te->NEVRA);
fdFree(te->fd);
rpmfiFree(te->fi);
rpmfilesFree(te->files);
headerFree(te->h);
rpmfsFree(te->fs);
@ -471,7 +469,6 @@ rpmds rpmteDS(rpmte te, rpmTagVal tag)
void rpmteCleanFiles(rpmte te)
{
if (te != NULL) {
te->fi = rpmfiFree(te->fi);
te->files = rpmfilesFree(te->files);
}
}