We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b7488c commit 8e49afbCopy full SHA for 8e49afb
1 file changed
ext/crashtracking_frames.c
@@ -93,7 +93,7 @@ static void dd_frames_callback(void (*emit_frame)(const ddog_crasht_RuntimeStack
93
94
const zend_op *opline = call->opline;
95
if (!zai_is_mapped(opline, sizeof(zend_op))) {
96
- frame.column = 0;
+ frame.column = -1;
97
EMIT(&frame);
98
call = call->prev_execute_data;
99
continue;
@@ -105,7 +105,7 @@ static void dd_frames_callback(void (*emit_frame)(const ddog_crasht_RuntimeStack
105
if (zai_is_mapped(op, sizeof(zend_op))) {
106
frame.line = op->lineno;
107
} else {
108
+ frame.column = -2;
109
}
110
111
frame.line = func->op_array.line_end;
0 commit comments