bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=04c0e5609c355ff87f5f01c9c4c160186a65e85f
commit 04c0e5609c355ff87f5f01c9c4c160186a65e85f Author: Marcel Hollerbach <marcel-hollerb...@t-online.de> Date: Fri Jan 6 13:02:37 2017 +0100 eina: fix up last commit i am sorry. I missed that i just freed the string and not the complete buf. This now really frees the buf. --- src/lib/eina/eina_binbuf_template_c.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eina/eina_binbuf_template_c.x b/src/lib/eina/eina_binbuf_template_c.x index 2699997..ef6a58b 100644 --- a/src/lib/eina/eina_binbuf_template_c.x +++ b/src/lib/eina/eina_binbuf_template_c.x @@ -223,7 +223,7 @@ _FUNC_EXPAND(release)(_STRBUF_STRUCT_NAME *buf) _STRBUF_DATA_TYPE *result; result = _FUNC_EXPAND(string_steal)(buf); - _FUNC_EXPAND(string_free)(buf); + _FUNC_EXPAND(free)(buf); return result; } --