Revision d8bd113e libavutil/tree.c
libavutil/tree.c | ||
---|---|---|
128 | 128 |
} |
129 | 129 |
|
130 | 130 |
void av_tree_destroy(AVTreeNode *t){ |
131 |
if(t){ |
|
131 | 132 |
av_tree_destroy(t->child[0]); |
132 | 133 |
av_tree_destroy(t->child[1]); |
133 | 134 |
av_free(t); |
135 |
} |
|
134 | 136 |
} |
135 | 137 |
|
136 | 138 |
#if 0 |
Also available in: Unified diff