summaryrefslogtreecommitdiff
path: root/ext/db/db.c
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-06-28 15:08:20 +0000
committerDerick Rethans <derick@php.net>2002-06-28 15:08:20 +0000
commit0c8d24b53aeb1625f49662fdf63b2a6fb1783f2d (patch)
tree24bca04106ba15f0019a5275d06fb5e6987e3243 /ext/db/db.c
parent787ee41beb92d1fee4e67bd1e27adf9fdfb2e1e4 (diff)
downloadphp-git-0c8d24b53aeb1625f49662fdf63b2a6fb1783f2d.tar.gz
- More gotchas...
Diffstat (limited to 'ext/db/db.c')
-rw-r--r--ext/db/db.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/db/db.c b/ext/db/db.c
index f9c0480480..cf9c0afc91 100644
--- a/ext/db/db.c
+++ b/ext/db/db.c
@@ -737,14 +737,14 @@ PHP_FUNCTION(dbmdelete)
RETURN_FALSE;
}
- ret = php_dbm_delete(info, Z_STRVAL_P(key));
+ ret = php_dbm_delete(info, Z_STRVAL_P(key) TSRMLS_CC);
RETURN_LONG(ret);
}
/* }}} */
/* {{{ php_dbm_delete
*/
-int php_dbm_delete(dbm_info *info, char *key) {
+int php_dbm_delete(dbm_info *info, char *key TSRMLS_DC) {
datum key_datum;
int ret;
DBM_TYPE dbf;