circo

claudio's IRC oasis
git clone git://git.bitsmanent.org/circo
Log | Files | Refs | README | LICENSE

commit c31a0c519ec6c8651f43ac7df2a8bcee5c1ebce9
parent ee6867a7b3c703e45c264d3b99ac0b9ef2c0fcdc
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Mon, 31 Jul 2017 10:30:51 +0200

Fix a memory leak in freebuf().

Diffstat:
Mcirco.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/circo.c b/circo.c @@ -571,6 +571,7 @@ focusprev(const Arg *arg) { void freebuf(Buffer *b) { + free(b->hist); free(b->data); free(b); }