jpeg pushed a commit to branch master.

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

commit e0827a6a90acde0418f7375b5026fea5f3bb0408
Author: Artem Popov <artem.po...@samsung.com>
Date:   Thu Dec 1 11:05:50 2016 +0900

    Eet: add EINA_ARG_NONNULL for eet_data_text_undump* @fix
    
    Summary: Eet_data_text_undump/undump_cipher: add EINA_ARG_NONNULL for 
mandatory pointer on size(int)
    
    Reviewers: cedric, NikaWhite, myoungwoon, jpeg
    
    Reviewed By: jpeg
    
    Subscribers: jpeg, t.naumenko
    
    Differential Revision: https://phab.enlightenment.org/D4440
---
 src/lib/eet/Eet.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/eet/Eet.h b/src/lib/eet/Eet.h
index 39f060a..19ab574 100644
--- a/src/lib/eet/Eet.h
+++ b/src/lib/eet/Eet.h
@@ -3268,7 +3268,7 @@ eet_data_text_dump(const void *data_in,
 EAPI void *
 eet_data_text_undump(const char *text,
                      int textlen,
-                     int *size_ret);
+                     int *size_ret) EINA_ARG_NONNULL(3);
 
 /**
  * Dump an eet encoded data structure from an eet file into ascii text
@@ -4101,7 +4101,7 @@ EAPI void *
 eet_data_text_undump_cipher(const char *text,
                             const char *cipher_key,
                             int textlen,
-                            int *size_ret);
+                            int *size_ret) EINA_ARG_NONNULL(4);
 
 /**
  * Dump an eet encoded data structure from an eet file into ascii

-- 


Reply via email to