diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-18 20:46:19 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-18 20:46:19 +0000 |
commit | 02772d7cbebdade86dabcbbc9d19e72db2bd0b43 (patch) | |
tree | cd69db8c6dcccdbdc0b519f7d88aaacc22dbac4d /man.c | |
parent | e2d8679f361643c8410c69f218268085075bc428 (diff) | |
download | mandoc-02772d7cbebdade86dabcbbc9d19e72db2bd0b43.tar.gz |
Added nchild decrement in libman (not used, but better in than forgotten).
Added nchild to libmdoc, deprecated count() functions in validator.
Diffstat (limited to 'man.c')
-rw-r--r-- | man.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -252,6 +252,8 @@ man_node_free(struct man_node *p) if (p->string) free(p->string); + if (p->parent) + p->parent->nchild--; free(p); } @@ -265,6 +267,7 @@ man_node_freelist(struct man_node *p) if (p->next) man_node_freelist(p->next); + assert(0 == p->nchild); man_node_free(p); } |