From: Frank M. Kromann Date: Thu, 31 May 2001 18:57:58 +0000 (+0000) Subject: Adding missing resource X-Git-Tag: PRE_GRANULAR_GARBAGE_FIX~171 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=75daa01362ec9b66bf10d6ac82c2c45f30663e3f;p=php Adding missing resource --- diff --git a/ext/fbsql/php_fbsql.c b/ext/fbsql/php_fbsql.c index a9b78ba6ad..2d852a4183 100644 --- a/ext/fbsql/php_fbsql.c +++ b/ext/fbsql/php_fbsql.c @@ -1704,6 +1704,9 @@ PHP_FUNCTION(fbsql_list_dbs) phpResult->array = fbcehAvailableDatabases(phpLink->execHandler); phpResult->rowCount = fbaCount(phpResult->array); phpResult->list = NULL; + + ZEND_REGISTER_RESOURCE(return_value, phpResult, le_result); + } /* }}} */