summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2015-11-21 04:54:21 -0800
committerXinchen Hui <laruence@gmail.com>2015-11-21 04:54:48 -0800
commitcbc71995a8e6e179f8a86a114dd29f80fb4a65cc (patch)
tree046f2429d7a4db21c58ca96ef23c3bf91e635436
parent7b195c9875efa53204a302ad8aae54af4bb6158e (diff)
downloadphp-git-cbc71995a8e6e179f8a86a114dd29f80fb4a65cc.tar.gz
Unused var
-rw-r--r--Zend/zend_exceptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c
index 4b38829cd9..733976d4c3 100644
--- a/Zend/zend_exceptions.c
+++ b/Zend/zend_exceptions.c
@@ -242,7 +242,6 @@ ZEND_METHOD(exception, __wakeup)
{
zval *value;
zval *object = getThis();
- HashTable *intern_ht = zend_std_get_properties(getThis() TSRMLS_CC);
CHECK_EXC_TYPE("message", IS_STRING);
CHECK_EXC_TYPE("string", IS_STRING);
CHECK_EXC_TYPE("code", IS_LONG);
@@ -653,6 +652,7 @@ ZEND_METHOD(exception, getPrevious)
previous = zend_read_property(default_exception_ce, getThis(), "previous", sizeof("previous")-1, 1 TSRMLS_CC);
RETURN_ZVAL(previous, 1, 0);
}
+/* }}} */
int zend_spprintf(char **message, int max_len, const char *format, ...) /* {{{ */
{