aboutsummaryrefslogtreecommitdiffstats
path: root/meta-efl/recipes-efl/efl/efl/0003-edje_cc-Avoid-segfault-when-strcmp-NULL-items.patch
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2015-04-09 09:15:23 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2015-04-13 12:55:52 +0200
commit539922a6ddb35fb6fef3b754b4999fae61470681 (patch)
tree6cfab8f9e937eff5090c3b64fec9cdaac7ce301b /meta-efl/recipes-efl/efl/efl/0003-edje_cc-Avoid-segfault-when-strcmp-NULL-items.patch
parent932146a33175f14fda42899edf78fb31228062e5 (diff)
downloadmeta-openembedded-contrib-539922a6ddb35fb6fef3b754b4999fae61470681.tar.gz
efl,elementary,evas-generic-loaders: upgrade to 1.13.2
* announcements: https://phab.enlightenment.org/phame/live/3/post/efl_and_elementary_1_13_1_release/ https://phab.enlightenment.org/phame/live/3/post/efl_elementary_and_evas_generic_loaders_1_13_2_release/ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-efl/recipes-efl/efl/efl/0003-edje_cc-Avoid-segfault-when-strcmp-NULL-items.patch')
-rw-r--r--meta-efl/recipes-efl/efl/efl/0003-edje_cc-Avoid-segfault-when-strcmp-NULL-items.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta-efl/recipes-efl/efl/efl/0003-edje_cc-Avoid-segfault-when-strcmp-NULL-items.patch b/meta-efl/recipes-efl/efl/efl/0003-edje_cc-Avoid-segfault-when-strcmp-NULL-items.patch
deleted file mode 100644
index 55d7b543c8..0000000000
--- a/meta-efl/recipes-efl/efl/efl/0003-edje_cc-Avoid-segfault-when-strcmp-NULL-items.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 84259714c2376fdb919299e8e01af1ccc6fbe2c0 Mon Sep 17 00:00:00 2001
-From: Stefan Schmidt <s.schmidt@samsung.com>
-Date: Thu, 12 Feb 2015 15:24:27 +0100
-Subject: [PATCH 3/3] edje_cc: Avoid segfault when strcmp NULL items
-
-Martin reported a porblem with one of the SHR project edc files after an upgrade
-to 1.13. The segfault itself is easy enough to fix here but I think there might
-be other problems with the edc after this segfault is gone. We will see.
-
-Fixes T2106
----
- src/bin/edje/edje_cc_out.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/bin/edje/edje_cc_out.c b/src/bin/edje/edje_cc_out.c
-index 4f582c7..bc85444 100755
---- a/src/bin/edje/edje_cc_out.c
-+++ b/src/bin/edje/edje_cc_out.c
-@@ -386,7 +386,7 @@ check_source_links(Edje_Part_Collection *pc, Edje_Part *ep, Eet_File *ef, Eina_L
- EINA_LIST_FOREACH(edje_collections, l, pc_source)
- {
- /* Find sourced group */
-- if (strcmp(ep->source, pc_source->part) == 0)
-+ if (ep->source && pc_source->part && strcmp(ep->source, pc_source->part) == 0)
- {
- /* Go through every part to find parts with type GROUP */
- for (i = 0; i < pc_source->parts_count; ++i)
---
-2.3.0
-