diff options
| -rw-r--r-- | ext/db/db.c | 4 |
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; |
