Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=83dd4504456d4b5e464d6ec4a7665e2c922db67f
Commit:     83dd4504456d4b5e464d6ec4a7665e2c922db67f
Parent:     e7c746ef098770f863ba294adac5b30d124ba469
Author:     Myron Stowe <[EMAIL PROTECTED]>
AuthorDate: Mon Jun 4 16:25:37 2007 -0600
Committer:  Len Brown <[EMAIL PROTECTED]>
CommitDate: Mon Jun 18 00:51:47 2007 -0400

    ACPICA: fix error path in new external package objects as method arguments
    
    In the routine acpi_ut_create_package_object(), if the
    ACPI_ALLOCATE_ZEROED() fails then ACPI_FREE(package_desc) is called as
    part of the cleanup.  This should instead be
    acpi_ut_remove_reference(package_desc) in order to remove the reference
    acquired from acpi_ut_create_internal_object() [see the routine
    acpi_ut_create_buffer_object() as an example of proper functionality].
    
    Signed-off-by: Myron Stowe <[EMAIL PROTECTED]>
    Signed-off-by: Len Brown <[EMAIL PROTECTED]>
---
 drivers/acpi/utilities/utobject.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/acpi/utilities/utobject.c 
b/drivers/acpi/utilities/utobject.c
index db0b9ba..76ee766 100644
--- a/drivers/acpi/utilities/utobject.c
+++ b/drivers/acpi/utilities/utobject.c
@@ -177,7 +177,7 @@ union acpi_operand_object 
*acpi_ut_create_package_object(u32 count)
        package_elements = ACPI_ALLOCATE_ZEROED((acpi_size)
                                                (count + 1) * sizeof(void *));
        if (!package_elements) {
-               ACPI_FREE(package_desc);
+               acpi_ut_remove_reference(package_desc);
                return_PTR(NULL);
        }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to