[tfman] free up docstructure

This commit is contained in:
nick black 2021-12-12 05:20:37 -05:00 committed by nick black
parent f2677e2366
commit c2c61172f2

View File

@ -758,10 +758,10 @@ draw_domnode(struct ncplane* p, const pagedom* dom, const pagenode* n,
// very fast moves.
static int
draw_content(struct ncplane* stdn, struct ncplane* p){
const pagedom* dom = ncplane_userptr(p);
pagedom* dom = ncplane_userptr(p);
unsigned wrotetext = 0; // unused by us
struct docstructure* ds = docstructure_create(stdn);
if(ds == NULL){
dom->ds = docstructure_create(stdn);
if(dom->ds == NULL){
return -1;
}
return draw_domnode(p, dom, dom->root, &wrotetext);