Initialize pointer before passing to e_wheel_bindings_find()

It's going to dereference it, so init it to NULL.
This commit is contained in:
Derek Foreman 2016-02-18 11:41:41 -06:00
parent c373331f94
commit 7063aa3bb8
1 changed files with 1 additions and 1 deletions

View File

@ -1225,7 +1225,7 @@ E_API E_Action *
e_bindings_wheel_event_handle(E_Binding_Context ctxt, E_Object *obj, E_Binding_Event_Wheel *ev)
{
E_Action *act;
E_Binding_Wheel *binding;
E_Binding_Wheel *binding = NULL;
if (bindings_disabled) return NULL;
while (1)