cedric pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=37c1c4e9f662bbb81a11700bd8055d0fbcc933f0

commit 37c1c4e9f662bbb81a11700bd8055d0fbcc933f0
Author: Cedric BAIL <cedric.b...@samsung.com>
Date:   Thu Jan 2 12:11:38 2014 +0900

    eina: make eina_binbuf_free and eina_strbuff_free accept NULL.
    
    We do follow free() logic here and accept NULL for all eina_*_free() 
functions.
    This patch just do so for Eina_Binbuf and Eina_Strbuf.
---
 src/lib/eina/eina_binbuf_template_c.x | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/lib/eina/eina_binbuf_template_c.x 
b/src/lib/eina/eina_binbuf_template_c.x
index 7e0c539..3dfae42 100644
--- a/src/lib/eina/eina_binbuf_template_c.x
+++ b/src/lib/eina/eina_binbuf_template_c.x
@@ -77,6 +77,8 @@ _FUNC_EXPAND(manage_new_length)(_STRBUF_DATA_TYPE *str, 
size_t length)
 EAPI void
 _FUNC_EXPAND(free)(_STRBUF_STRUCT_NAME *buf)
 {
+   if (!buf) return ;
+
    EINA_MAGIC_CHECK_STRBUF(buf);
    EINA_MAGIC_SET(buf, EINA_MAGIC_NONE);
    eina_strbuf_common_free(buf);

-- 


Reply via email to