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 f673a99 commit aed30d5Copy full SHA for aed30d5
drivers/acpi/acpica/dswexec.c
@@ -397,11 +397,11 @@ acpi_status acpi_ds_exec_end_op(struct acpi_walk_state *walk_state)
397
398
/* Resolve all operands */
399
400
+ union acpi_operand_object **stack_ptr = NULL;
401
+ if (walk_state->num_operands > 0)
402
+ stack_ptr = ACPI_WALK_OPERANDS;
403
status = acpi_ex_resolve_operands(walk_state->opcode,
- &(walk_state->
- operands
- [walk_state->
404
- num_operands - 1]),
+ stack_ptr,
405
walk_state);
406
}
407
0 commit comments