aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/acpica/psargs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/psargs.c b/drivers/acpi/acpica/psargs.c
index 5ac36aba507c..a683d6606e2e 100644
--- a/drivers/acpi/acpica/psargs.c
+++ b/drivers/acpi/acpica/psargs.c
@@ -618,6 +618,7 @@ static union acpi_parse_object *acpi_ps_get_next_field(struct acpi_parse_state
618 618
619 arg = acpi_ps_alloc_op(AML_INT_BYTELIST_OP); 619 arg = acpi_ps_alloc_op(AML_INT_BYTELIST_OP);
620 if (!arg) { 620 if (!arg) {
621 acpi_ps_free_op(field);
621 return_PTR(NULL); 622 return_PTR(NULL);
622 } 623 }
623 624
@@ -662,6 +663,7 @@ static union acpi_parse_object *acpi_ps_get_next_field(struct acpi_parse_state
662 } else { 663 } else {
663 arg = acpi_ps_alloc_op(AML_INT_NAMEPATH_OP); 664 arg = acpi_ps_alloc_op(AML_INT_NAMEPATH_OP);
664 if (!arg) { 665 if (!arg) {
666 acpi_ps_free_op(field);
665 return_PTR(NULL); 667 return_PTR(NULL);
666 } 668 }
667 669