Download raw body.
got_blame memory leak
On Mon, Mar 25, 2024 at 03:30:24PM -0500, Kyle Ackerman wrote: > Here is a diff with the rewritten logic. Thanks! > blob - c956fa4a7551d6ffe10a3bd5888209dde0a148b8 > file + lib/object_open_privsep.c > --- lib/object_open_privsep.c > +++ lib/object_open_privsep.c > @@ -24,6 +24,7 @@ > > #include <errno.h> > #include <imsg.h> > +#include <stddef.h> > #include <stdio.h> > #include <stdint.h> > #include <stdlib.h> What is the purpose of including stddef.h? Is it to ensure the definition of NULL? Did you see an issue where this broke the build somewhere?
got_blame memory leak