From 17e598e884de8653f13fe6450e348ed7d30ea8f5 Mon Sep 17 00:00:00 2001 From: Chris Wright Date: Sun, 14 Dec 2014 02:51:08 +0000 Subject: [PATCH] Add missing TSRMLS --- src/php_pqstm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/php_pqstm.c b/src/php_pqstm.c index 10d5768..f6da067 100644 --- a/src/php_pqstm.c +++ b/src/php_pqstm.c @@ -29,7 +29,7 @@ zend_class_entry *php_pqstm_class_entry; static zend_object_handlers php_pqstm_object_handlers; static HashTable php_pqstm_object_prophandlers; -static void php_pqstm_deallocate(php_pqstm_object_t *obj, zend_bool async, zend_bool silent) +static void php_pqstm_deallocate(php_pqstm_object_t *obj, zend_bool async, zend_bool silent TSRMLS_DC) { if (obj->intern->allocated) { char *quoted_name = PQescapeIdentifier(obj->intern->conn->intern->conn, obj->intern->name, strlen(obj->intern->name)); @@ -75,7 +75,7 @@ static void php_pqstm_object_free(void *o TSRMLS_DC) if (obj->intern) { if (obj->intern->conn->intern) { php_pq_callback_dtor(&obj->intern->conn->intern->onevent); - php_pqstm_deallocate(obj, 0, 1); + php_pqstm_deallocate(obj, 0, 1 TSRMLS_CC); php_pq_object_delref(obj->intern->conn TSRMLS_CC); } efree(obj->intern->name); -- 2.30.2