eina: fix up last commit
authorMarcel Hollerbach <marcel-hollerbach@t-online.de>
Fri, 6 Jan 2017 12:02:37 +0000 (13:02 +0100)
committerMarcel Hollerbach <marcel-hollerbach@t-online.de>
Fri, 6 Jan 2017 12:02:37 +0000 (13:02 +0100)
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

index 2699997..ef6a58b 100644 (file)
@@ -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;
 }