Misplaced assert

- we only care about non-NULL data if we're supposed to free the contents
This commit is contained in:
Panu Matilainen 2008-05-21 12:41:31 +03:00
parent 82b89c3b0c
commit 1c80801ab6
1 changed files with 1 additions and 1 deletions

View File

@ -40,8 +40,8 @@ void rpmtdFreeData(rpmtd td)
assert(td != NULL);
if (td->flags & RPMTD_ALLOCED) {
assert(td->data != NULL);
if (td->flags & RPMTD_PTR_ALLOCED) {
assert(td->data != NULL);
char **data = td->data;
for (int i = 0; i < td->count; i++) {
free(data[i]);