seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=c8d222f273e11ce5812e86375e5db9d5a42625c1

commit c8d222f273e11ce5812e86375e5db9d5a42625c1
Author: Daniel Juyung Seo <[email protected]>
Date:   Sun Apr 13 01:44:22 2014 +0900

    widget: Initialized internal variables.
    
    This fixes coverity CID 1199625 and 1199626.
    
    @fix
---
 src/lib/elm_widget.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elm_widget.c b/src/lib/elm_widget.c
index e8a0862..9256370 100644
--- a/src/lib/elm_widget.c
+++ b/src/lib/elm_widget.c
@@ -2870,7 +2870,7 @@ EOLIAN static void
 _elm_widget_parents_bounce_get(Eo *obj, Elm_Widget_Smart_Data *_pd 
EINA_UNUSED, Eina_Bool *horiz, Eina_Bool *vert)
 {
    Evas_Object *parent_obj = obj;
-   Eina_Bool h, v;
+   Eina_Bool h = EINA_FALSE, v = EINA_FALSE;
 
    *horiz = EINA_FALSE;
    *vert = EINA_FALSE;

-- 


Reply via email to