We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362f787 commit 1cfd12dCopy full SHA for 1cfd12d
Zend/zend_dtrace.c
@@ -46,9 +46,9 @@ static inline const char *dtrace_get_executed_filename(void)
46
ZEND_API zend_op_array *dtrace_compile_file(zend_file_handle *file_handle, int type)
47
{
48
zend_op_array *res;
49
- DTRACE_COMPILE_FILE_ENTRY(file_handle->opened_path->val, (char *)file_handle->filename);
+ DTRACE_COMPILE_FILE_ENTRY(ZSTR_VAL(file_handle->opened_path), (char *)file_handle->filename);
50
res = compile_file(file_handle, type);
51
- DTRACE_COMPILE_FILE_RETURN(file_handle->opened_path->val, (char *)file_handle->filename);
+ DTRACE_COMPILE_FILE_RETURN(ZSTR_VAL(file_handle->opened_path), (char *)file_handle->filename);
52
53
return res;
54
}
0 commit comments