summaryrefslogtreecommitdiff
path: root/src/classbase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/classbase.cpp')
-rw-r--r--src/classbase.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/classbase.cpp b/src/classbase.cpp
index eadc4c6..db32601 100644
--- a/src/classbase.cpp
+++ b/src/classbase.cpp
@@ -552,7 +552,7 @@ zend_object_value ClassBase::cloneObject(zval *val TSRMLS_DC)
result.handlers = meta->objectHandlers();
// store the object
- MixedObject *new_object = cpp->store(entry);
+ MixedObject *new_object = cpp->store(entry TSRMLS_CC);
// store the object in the object cache
result.handle = cpp->handle();
@@ -1211,7 +1211,7 @@ zend_object_value ClassBase::createObject(zend_class_entry *entry TSRMLS_DC)
result.handlers = meta->objectHandlers();
// store the object
- cpp->store(entry);
+ cpp->store(entry TSRMLS_CC);
// store the object in the object cache
result.handle = cpp->handle();