warning: 'intern' may be used uninitialized in this function [-Wmaybe-uninitialized] (mostly to make gcc happy)

This commit is contained in:
Remi Collet 2013-07-09 13:12:55 +00:00
parent c8ed0ccba4
commit d1575c6396

View file

@ -35,7 +35,7 @@ static zend_object_handlers gnupg_keylistiterator_object_handlers;
/* {{{ defs */
#define GNUPG_GET_ITERATOR() \
zval *this = getThis(); \
gnupg_keylistiterator_object *intern; \
gnupg_keylistiterator_object *intern = NULL; \
if(this){ \
intern = (gnupg_keylistiterator_object*) zend_object_store_get_object(getThis() TSRMLS_CC); \
if(!intern){ \