summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank M. Kromann <fmk@php.net>2001-05-31 18:57:58 +0000
committerFrank M. Kromann <fmk@php.net>2001-05-31 18:57:58 +0000
commit75daa01362ec9b66bf10d6ac82c2c45f30663e3f (patch)
treee93e4bf1dbfb41038e0c1254d9d7803182c6dbf7
parent7fd7f0517a5025f01777fbf663344d3d0b4234e8 (diff)
downloadphp-git-75daa01362ec9b66bf10d6ac82c2c45f30663e3f.tar.gz
Adding missing resource
-rw-r--r--ext/fbsql/php_fbsql.c3
1 files changed, 3 insertions, 0 deletions
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);
+
}
/* }}} */