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.
This commit is contained in:
Marcel Hollerbach 2017-01-06 13:02:37 +01:00
parent 4d6d177ff7
commit 04c0e5609c
1 changed files with 1 additions and 1 deletions

View 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;
}