From af401b408343b57ced7f98eaded1e4c59337d0aa Mon Sep 17 00:00:00 2001 From: Daniel Zaoui Date: Wed, 1 May 2013 21:45:57 +0300 Subject: [PATCH] Eo: fix for unitialized value --- src/lib/eo/eo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index 611969f602..9fc0b02c33 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -1475,7 +1475,7 @@ _eo_data_scope_get(const _Eo *obj, const _Eo_Class *klass) static inline void * _eo_data_xref_internal(const char *file, int line, _Eo *obj, const _Eo_Class *klass, const _Eo *ref_obj) { - void *data; + void *data = NULL; if (klass != NULL) { data = _eo_data_scope_get(obj, klass);