summaryrefslogtreecommitdiff
path: root/ext/java/java.c
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2001-08-08 01:52:22 +0000
committerfoobar <sniper@php.net>2001-08-08 01:52:22 +0000
commitbef77f811a4a597b4f96437639c3703c9e43719e (patch)
treed4d67589e08ffce5f0e4ab8340b0122628b38b1e /ext/java/java.c
parentb94cff2559df777445756b7174aa2b30ac8ee4be (diff)
downloadphp-git-bef77f811a4a597b4f96437639c3703c9e43719e.tar.gz
Make this compile again.
Diffstat (limited to 'ext/java/java.c')
-rw-r--r--ext/java/java.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/java/java.c b/ext/java/java.c
index 6c7013e926..896388162c 100644
--- a/ext/java/java.c
+++ b/ext/java/java.c
@@ -554,9 +554,10 @@ static pval _java_getset_property
pval java_get_property_handler(zend_property_reference *property_reference)
{
+ pval presult;
TSRMLS_FETCH();
- pval presult = _java_getset_property(property_reference, 0 TSRMLS_CC);
+ presult = _java_getset_property(property_reference, 0 TSRMLS_CC);
checkError(&presult);
return presult;
}