From e2a7ada4b38918d0f69c5e7630ec830da2548795 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 20 Aug 2012 12:37:41 +0000 Subject: [PATCH] null check which hasn't affected anything yet SVN revision: 75464 --- src/bin/e_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_utils.c b/src/bin/e_utils.c index 5ffa197cb..956d2a160 100644 --- a/src/bin/e_utils.c +++ b/src/bin/e_utils.c @@ -1556,6 +1556,6 @@ e_util_binding_match(const Eina_List *bindlist, Ecore_Event_Key *ev, unsigned in } if (num) (*num)++; } - *num = 0; + if (num) *num = 0; return NULL; }