summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ta/ta.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ta/ta.c b/ta/ta.c
index f8966bd020..817ccfd3ab 100644
--- a/ta/ta.c
+++ b/ta/ta.c
@@ -246,8 +246,8 @@ void ta_free_children(void *ptr)
struct ta_ext_header *eh = h ? h->ext : NULL;
if (!eh)
return;
- while (eh->children.next != &eh->children)
- ta_free(PTR_FROM_HEADER(eh->children.next));
+ while (eh->children.prev != &eh->children)
+ ta_free(PTR_FROM_HEADER(eh->children.prev));
}
/* Free the given allocation, and all of its direct and indirect children.