mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 06:27:08 +00:00
warning: 'intern' may be used uninitialized in this function [-Wmaybe-uninitialized] (mostly to make gcc happy)
This commit is contained in:
parent
c8ed0ccba4
commit
d1575c6396
1 changed files with 1 additions and 1 deletions
|
@ -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){ \
|
||||
|
|
Loading…
Reference in a new issue