More "zone used uninitialized" fixes from Brett Nash.

SVN revision: 31708
This commit is contained in:
Christopher Michael 2007-09-13 21:20:14 +00:00
parent 831e3b3c1b
commit 2e50246203
1 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@ e_modapi_about(E_Module *m)
static void
_e_mod_action_winlist_cb(E_Object *obj, const char *params)
{
E_Zone *zone;
E_Zone *zone = NULL;
if (obj)
{
@ -129,7 +129,7 @@ _e_mod_action_winlist_cb(E_Object *obj, const char *params)
static void
_e_mod_action_winlist_mouse_cb(E_Object *obj, const char *params, Ecore_X_Event_Mouse_Button_Down *ev)
{
E_Zone *zone;
E_Zone *zone = NULL;
if (obj)
{
@ -175,7 +175,7 @@ _e_mod_action_winlist_mouse_cb(E_Object *obj, const char *params, Ecore_X_Event_
static void
_e_mod_action_winlist_key_cb(E_Object *obj, const char *params, Ecore_X_Event_Key_Down *ev)
{
E_Zone *zone;
E_Zone *zone = NULL;
if (obj)
{