summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHermet Park <hermetpark@gmail.com>2019-07-24 14:28:00 +0900
committerHermet Park <hermetpark@gmail.com>2019-07-24 14:28:29 +0900
commitac75934d06541fc82ddd241b2d5f42763b6298f4 (patch)
tree2d44bc30fb3ca160800e292e72fd66a6a148019d
parent7c030aa57e0141bd5802b7201f31b9bd7b138a0f (diff)
downloadefl-ac75934d06541fc82ddd241b2d5f42763b6298f4.tar.gz
textpath: + null handling.
-rw-r--r--src/lib/elementary/efl_ui_textpath.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/elementary/efl_ui_textpath.c b/src/lib/elementary/efl_ui_textpath.c
index aa89865a42..ee16a2f4df 100644
--- a/src/lib/elementary/efl_ui_textpath.c
+++ b/src/lib/elementary/efl_ui_textpath.c
@@ -971,6 +971,7 @@ elm_textpath_circle_set(Eo *obj, double x, double y, double radius, double start
double sweep_length;
EFL_UI_TEXTPATH_DATA_GET(obj, pd);
+ if (!pd) return;
if (pd->circle.x == x && pd->circle.y == y &&
pd->circle.radius == radius &&