]> granicus.if.org Git - php/commitdiff
Fixed char/zend_string mesh
authorDmitry Stogov <dmitry@zend.com>
Fri, 21 Feb 2014 20:31:39 +0000 (00:31 +0400)
committerDmitry Stogov <dmitry@zend.com>
Fri, 21 Feb 2014 20:31:39 +0000 (00:31 +0400)
Zend/zend_API.c
Zend/zend_vm_def.h
Zend/zend_vm_execute.h

index b7b57929637eaa108bf1da390c070358011cef84..b54996bcae35897af5c1eef18ebba35aa3c2c9c7 100644 (file)
@@ -2929,7 +2929,7 @@ get_function_via_handler:
                                             !instanceof_function(ce_org, fcc->function_handler->common.scope TSRMLS_CC))) {
                                                if ((fcc->function_handler->common.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0) {
                                                        if (fcc->function_handler->type != ZEND_OVERLOADED_FUNCTION) {
-                                                               efree((char*)fcc->function_handler->common.function_name);
+                                                               STR_RELEASE(fcc->function_handler->common.function_name);
                                                        }
                                                        efree(fcc->function_handler);
                                                }
@@ -2961,7 +2961,7 @@ get_function_via_handler:
                if (fcc->calling_scope && !call_via_handler) {
                        if (!fcc->object_ptr && (fcc->function_handler->common.fn_flags & ZEND_ACC_ABSTRACT)) {
                                if (error) {
-                                       zend_spprintf(error, 0, "cannot call abstract method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name);
+                                       zend_spprintf(error, 0, "cannot call abstract method %s::%s()", fcc->calling_scope->name->val, fcc->function_handler->common.function_name->val);
                                        retval = 0;
                                } else {
                                        zend_error(E_ERROR, "Cannot call abstract method %s::%s()", fcc->calling_scope->name->val, fcc->function_handler->common.function_name->val);
@@ -3008,7 +3008,7 @@ get_function_via_handler:
                                                        if (*error) {
                                                                efree(*error);
                                                        }
-                                                       zend_spprintf(error, 0, "cannot access private method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name);
+                                                       zend_spprintf(error, 0, "cannot access private method %s::%s()", fcc->calling_scope->name->val, fcc->function_handler->common.function_name->val);
                                                }
                                                retval = 0;
                                        }
@@ -3018,7 +3018,7 @@ get_function_via_handler:
                                                        if (*error) {
                                                                efree(*error);
                                                        }
-                                                       zend_spprintf(error, 0, "cannot access protected method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name);
+                                                       zend_spprintf(error, 0, "cannot access protected method %s::%s()", fcc->calling_scope->name->val, fcc->function_handler->common.function_name->val);
                                                }
                                                retval = 0;
                                        }
@@ -3114,7 +3114,7 @@ ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint ch
                             fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY ||
                             fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION)) {
                                if (fcc->function_handler->type != ZEND_OVERLOADED_FUNCTION) {
-                                       efree((char*)fcc->function_handler->common.function_name);
+                                       STR_RELEASE(fcc->function_handler->common.function_name);
                                }
                                efree(fcc->function_handler);
                        }
@@ -3192,7 +3192,7 @@ ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint ch
                                             fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY ||
                                             fcc->function_handler->type == ZEND_OVERLOADED_FUNCTION)) {
                                                if (fcc->function_handler->type != ZEND_OVERLOADED_FUNCTION) {
-                                                       efree((char*)fcc->function_handler->common.function_name);
+                                                       STR_RELEASE(fcc->function_handler->common.function_name);
                                                }
                                                efree(fcc->function_handler);
                                        }
@@ -3270,7 +3270,7 @@ ZEND_API zend_bool zend_make_callable(zval *callable, char **callable_name TSRML
                     fcc.function_handler->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY ||
                     fcc.function_handler->type == ZEND_OVERLOADED_FUNCTION)) {
                        if (fcc.function_handler->type != ZEND_OVERLOADED_FUNCTION) {
-                               efree((char*)fcc.function_handler->common.function_name);
+                               STR_RELEASE(fcc.function_handler->common.function_name);
                        }
                        efree(fcc.function_handler);
                }
index 6f776cc72960e964e48465fe38b045e3b0918200..43ca503504e16ecbba118af428e9b40065d1fe4b 100644 (file)
@@ -1968,7 +1968,7 @@ ZEND_VM_HELPER(zend_do_fcall_common_helper, ANY, ANY)
                }
 
                if (fbc->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY) {
-                       efree((char*)fbc->common.function_name);
+                       STR_RELEASE(fbc->common.function_name);
                }
                efree(fbc);
 
index 5f088ab91b049f2e90547187ad06a087d8d9478c..b2bacddfce50b244a954a17d613a6af7fd25126c 100644 (file)
@@ -602,7 +602,7 @@ static int ZEND_FASTCALL zend_do_fcall_common_helper_SPEC(ZEND_OPCODE_HANDLER_AR
                }
 
                if (fbc->type == ZEND_OVERLOADED_FUNCTION_TEMPORARY) {
-                       efree((char*)fbc->common.function_name);
+                       STR_RELEASE(fbc->common.function_name);
                }
                efree(fbc);