summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_exception.c
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2005-01-07 16:24:51 +0000
committerSebastian Bergmann <sebastian@php.net>2005-01-07 16:24:51 +0000
commit683515596b583f6fe1c5525d1ea0ca11da3d354d (patch)
treeff3c9a83d88d06d1b45b7d647132a8c2b64d0d7e /ext/mysqli/mysqli_exception.c
parentaca657eca2606523c5af2f401126a5c7db0bfefa (diff)
downloadphp-git-683515596b583f6fe1c5525d1ea0ca11da3d354d.tar.gz
ZTS fix.
Diffstat (limited to 'ext/mysqli/mysqli_exception.c')
-rw-r--r--ext/mysqli/mysqli_exception.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli_exception.c b/ext/mysqli/mysqli_exception.c
index 3d1732356b..16e66e5f60 100644
--- a/ext/mysqli/mysqli_exception.c
+++ b/ext/mysqli/mysqli_exception.c
@@ -69,6 +69,6 @@ void php_mysqli_throw_sql_exception(char *sqlstate, int errorno TSRMLS_DC, char
efree(message);
zend_update_property_long(mysqli_exception_class_entry, sql_ex, "code", sizeof("code") - 1, errorno TSRMLS_CC);
- zend_throw_exception_object(sql_ex);
+ zend_throw_exception_object(sql_ex TSRMLS_CC);
}