{
unlang_op_t *op = NULL;
- if (frame->instruction) op = &unlang_ops[frame->instruction->type];
+ op = &unlang_ops[frame->instruction->type];
instruction_dump(request, frame->instruction);
RDEBUG2("yielded %s", is_yielded(frame) ? "yes" : "no");
RDEBUG2("unwind %s", is_unwinding(frame) ? "yes" : "no");
- if (frame->instruction) {
- RDEBUG2("control %s%s%s",
- is_break_point(frame) ? "b" : "-",
- is_return_point(frame) ? "r" : "-",
- is_continue_point(frame) ? "c" : "-"
- );
- }
+ RDEBUG2("control %s%s%s",
+ is_break_point(frame) ? "b" : "-",
+ is_return_point(frame) ? "r" : "-",
+ is_continue_point(frame) ? "c" : "-"
+ );
+
/*
* Call the custom frame dump function
*/