From: Ilia Alshanetsky Date: Tue, 15 Mar 2005 00:27:52 +0000 (+0000) Subject: Fixed possible usage of str without being initialized. X-Git-Tag: php-5.0.1b1~794 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c38ac19bf11e43ab7d6e5687174f6e748b4969c;p=php Fixed possible usage of str without being initialized. --- diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 0885eeed1f..be61253c46 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -273,7 +273,9 @@ static void add_assoc_name_entry(zval * val, char * key, X509_NAME * name, int s } else { zval_dtor(subentries); FREE_ZVAL(subentries); - add_assoc_stringl(subitem, sname, str->data, str->length, 1); + if (obj_cnt) { + add_assoc_stringl(subitem, sname, str->data, str->length, 1); + } } } zend_hash_update(HASH_OF(val), key, strlen(key) + 1, (void *)&subitem, sizeof(subitem), NULL);