diff options
author | Artem Popov <artem.popov@samsung.com> | 2016-12-01 11:05:50 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2016-12-01 11:05:50 +0900 |
commit | e0827a6a90acde0418f7375b5026fea5f3bb0408 (patch) | |
tree | ae3a5b38d895be8f674a66a7099cab875cf38511 | |
parent | 40364b49853307d8d593cd9bcffad4b5905fcb01 (diff) | |
download | efl-e0827a6a90acde0418f7375b5026fea5f3bb0408.tar.gz |
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
-rw-r--r-- | src/lib/eet/Eet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/eet/Eet.h b/src/lib/eet/Eet.h index 39f060a170..19ab574458 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 |