From 0fe4157b8252d9965356a1e9134b94d62ae6aeba Mon Sep 17 00:00:00 2001 From: Paul Driver Date: Tue, 12 Jun 2018 10:23:47 -0700 Subject: [PATCH] small memory leak for large edits --- noun/nock.c | 1 + 1 file changed, 1 insertion(+) diff --git a/noun/nock.c b/noun/nock.c index ca95069207..a2e3a91948 100644 --- a/noun/nock.c +++ b/noun/nock.c @@ -1607,6 +1607,7 @@ _n_edit(u3_noun big, u3_noun axe, u3_noun som) ? u3nc(_n_edit(u3k(u3h(big)), mor, som), u3k(u3t(big))) : u3nc(u3k(u3h(big)), _n_edit(u3k(u3t(big)), mor, som)); u3z(mor); + u3z(big); return pro; } }