seoz pushed a commit to branch master.

commit 5c7ca70a3d56b167d82819c7cb3c9e77da75d1f4
Author: Daniel Juyung Seo <[email protected]>
Date:   Fri Jul 5 19:04:14 2013 +0900

    elm_entry.c: fixed uninitialized variable issue spotted by coverity. CID 
1039985.
---
 src/lib/elm_entry.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c
index 4220a79..cf24a3e 100644
--- a/src/lib/elm_entry.c
+++ b/src/lib/elm_entry.c
@@ -839,7 +839,7 @@ _elm_entry_smart_on_focus(Eo *obj, void *_pd EINA_UNUSED, 
va_list *list)
 {
    Eina_Bool *ret = va_arg(*list, Eina_Bool *);
    Evas_Object *top;
-   Eina_Bool top_is_win;
+   Eina_Bool top_is_win = EINA_FALSE;
    if (ret) *ret = EINA_FALSE;
 
    Elm_Entry_Smart_Data *sd = _pd;

-- 

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev

Reply via email to