From c47e427e5b5b90d60d01fda72b94ebb766c98055 Mon Sep 17 00:00:00 2001 From: Marc Boeren Date: Wed, 30 Oct 2002 14:57:55 +0000 Subject: [PATCH] Fixed weird membug in oci8 support. --- ext/dbx/dbx_oci8.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/dbx/dbx_oci8.c b/ext/dbx/dbx_oci8.c index bc69ee4553..1f0a937d94 100644 --- a/ext/dbx/dbx_oci8.c +++ b/ext/dbx/dbx_oci8.c @@ -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; -- 2.50.1