git: 9front

Download patch

ref: 593df4b1611f1ee8b218e720ad8f806f837cdcd5
parent: 5c5f6e43ebc649cdd0d4e0351ef684898e510f5e
author: mischief <mischief@offblast.org>
date: Sat Feb 1 22:17:48 EST 2014

acid: fix memory leak in fundefs (from 9atom)

--- a/sys/src/cmd/acid/print.c
+++ b/sys/src/cmd/acid/print.c
@@ -88,6 +88,7 @@
 			Bprint(bout, "%-*s", max, vec[j]);
 		Bprint(bout, "\n");
 	}
+	free(vec);
 }
 
 void
--