projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d60f5e7
)
eo: Fix deadlock with shared objects
author
Jean-Philippe Andre
<jp.andre@samsung.com>
Thu, 6 Oct 2016 02:55:03 +0000
(11:55 +0900)
committer
Jean-Philippe Andre
<jp.andre@samsung.com>
Thu, 6 Oct 2016 03:24:59 +0000
(12:24 +0900)
The object pointer was passed to EO_OBJ_DONE, rather than its
eo id.
src/lib/eo/eo_base_class.c
patch
|
blob
|
history
diff --git
a/src/lib/eo/eo_base_class.c
b/src/lib/eo/eo_base_class.c
index
e05ffa6
..
d6db732
100644
(file)
--- a/
src/lib/eo/eo_base_class.c
+++ b/
src/lib/eo/eo_base_class.c
@@
-603,7
+603,7
@@
_efl_object_finalized_get(Eo *obj_id, Efl_Object_Data *pd EINA_UNUSED)
Eina_Bool finalized;
EO_OBJ_POINTER_RETURN_VAL(obj_id, obj, EINA_FALSE);
finalized = obj->finalized;
- EO_OBJ_DONE(obj);
+ EO_OBJ_DONE(obj
_id
);
return finalized;
}