]> granicus.if.org Git - php/commitdiff
Fixed weird membug in oci8 support.
authorMarc Boeren <mboeren@php.net>
Wed, 30 Oct 2002 14:57:55 +0000 (14:57 +0000)
committerMarc Boeren <mboeren@php.net>
Wed, 30 Oct 2002 14:57:55 +0000 (14:57 +0000)
ext/dbx/dbx_oci8.c

index bc69ee4553490f166e0a676e3dd5ba3be3a76724..1f0a937d943bf59d31ccdb120f60e63f834851f2 100644 (file)
@@ -218,6 +218,7 @@ int dbx_oci8_getrow(zval **rv, zval **result_handle, long row_number, INTERNAL_F
        zval *returned_zval=NULL;
 
        MAKE_STD_ZVAL(zval_returned_array); /* no value needed, it will be overwritten anyway */
+       ZVAL_EMPTY_STRING(zval_returned_array); /* there seems to be some weird mem-bug, so assigning a value anyway */
        MAKE_STD_ZVAL(zval_resulttype);
        ZVAL_LONG(zval_resulttype, OCI_NUM | OCI_RETURN_NULLS | OCI_RETURN_LOBS); /* no ASSOC, dbx handles that part */
        arguments[0]=result_handle;