From 2ad0cb40e86c1d84a40871d0a50c51279854dd82 Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Thu, 19 Aug 2010 18:51:46 +0900 Subject: [PATCH] [copypaste] Added null check routine. --- src/modules/ctxpopup_copypasteUI/copypaste.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/modules/ctxpopup_copypasteUI/copypaste.c b/src/modules/ctxpopup_copypasteUI/copypaste.c index bb4151e..4f38939 100644 --- a/src/modules/ctxpopup_copypasteUI/copypaste.c +++ b/src/modules/ctxpopup_copypasteUI/copypaste.c @@ -183,6 +183,11 @@ obj_longpress(Evas_Object *obj) EAPI void obj_mouseup(Evas_Object *obj) { + + if (!obj || !ext_mod) { + return; + } + /*update*/ elm_entry_extension_module_data_get(obj,ext_mod); if (ext_mod->longpress_timer) -- 2.7.4