diff options
author | ChunEon Park <hermet@hermet.pe.kr> | 2013-01-29 00:07:17 +0000 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2013-01-29 00:07:17 +0000 |
commit | 8a7e99b67e123aae0d3dfed3d56b9d2fc0caca3f (patch) | |
tree | b317f7b1ec80ffdfbdcc3249f70a99edacb81999 /NEWS | |
parent | c46b096c78f184f1a02ab1e9bc1a816ba3d538cd (diff) | |
download | efl-8a7e99b67e123aae0d3dfed3d56b9d2fc0caca3f.tar.gz efl-8a7e99b67e123aae0d3dfed3d56b9d2fc0caca3f.tar.xz efl-8a7e99b67e123aae0d3dfed3d56b9d2fc0caca3f.zip |
edje - [Edje: Bug fix] NULL check is added before strcmp() in _edje_real_part_swallow() function
Hi,
Can some one please verify and merge the attahed patch with open source svn Edje code.
[Issue details :]
NULL checking is not done before sending a string to strcmp().
In _edje_real_part_swallow() function of edje_util.c file, evas_object_type_get() API can return NULL and if
this NULL value is directly passed to strcmp(), it causes a crash.
[Issue fix :]
NULL check is added for obj_type before passing it to strcmp().
Thanks & Regards,
Sumanth
Signed-Off-By: Sumanth Krishna (sumanth.m@samsung.com)
SVN revision: 83393
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -131,3 +131,4 @@ Fixes: * Fixed pixman surface alloc where allocated and image size differ. * Fixed x11 error sync issue with ecore_x_image_get() * Fix evas gif loader to return the correct frame duration + * Prevent a crash even if an invalid object is swallowed into an edje object. |