q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=a1b23585271c403ef5e035f33676a1bda6bdfcb7

commit a1b23585271c403ef5e035f33676a1bda6bdfcb7
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Mon Jun 8 10:48:22 2015 +0100

    eolian_cxx: initialize all members in a struct correctly
    
    Fixes CID 1298133.
    
    @fix
---
 src/lib/eolian_cxx/eo_types.hh | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/lib/eolian_cxx/eo_types.hh b/src/lib/eolian_cxx/eo_types.hh
index 431ba05..4431d3b 100644
--- a/src/lib/eolian_cxx/eo_types.hh
+++ b/src/lib/eolian_cxx/eo_types.hh
@@ -295,8 +295,10 @@ struct eo_function
 
 struct eo_event
 {
-   eo_event() : scope(eolian_scope::public_) {}
-  
+   eo_event() : scope(eolian_scope::public_), is_beta(false), name(),
+                eo_name(), comment()
+   {}
+
    eolian_scope scope;
    bool is_beta;
    std::string name;

-- 


Reply via email to