stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=28dfe2f0ff8edb2f243bb39f91399328a3903c49
commit 28dfe2f0ff8edb2f243bb39f91399328a3903c49 Author: Stefan Schmidt <[email protected]> Date: Mon Apr 18 12:29:14 2016 +0200 eolian: free impl_full_params strbuf before going out of scope Just missed impl_full_params here while all others are free'd fine. CID: 1354287 --- src/bin/eolian/eo_generator.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/eolian/eo_generator.c b/src/bin/eolian/eo_generator.c index c367027..d2b7677 100644 --- a/src/bin/eolian/eo_generator.c +++ b/src/bin/eolian/eo_generator.c @@ -622,6 +622,7 @@ eo_bind_func_generate(const Eolian_Class *class, const Eolian_Function *funcid, eina_strbuf_free(va_args); eina_strbuf_free(full_params); + eina_strbuf_free(impl_full_params); eina_strbuf_free(params_init); eina_strbuf_free(params); eina_strbuf_free(fbody); --
