aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/utilities/utobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/utilities/utobject.c')
-rw-r--r--drivers/acpi/utilities/utobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/utilities/utobject.c b/drivers/acpi/utilities/utobject.c
index e68466de8044..ede6a80837df 100644
--- a/drivers/acpi/utilities/utobject.c
+++ b/drivers/acpi/utilities/utobject.c
@@ -175,8 +175,8 @@ union acpi_operand_object *acpi_ut_create_package_object(u32 count)
175 * Create the element array. Count+1 allows the array to be null 175 * Create the element array. Count+1 allows the array to be null
176 * terminated. 176 * terminated.
177 */ 177 */
178 package_elements = ACPI_ALLOCATE_ZEROED((acpi_size) 178 package_elements = ACPI_ALLOCATE_ZEROED(((acpi_size) count +
179 (count + 1) * sizeof(void *)); 179 1) * sizeof(void *));
180 if (!package_elements) { 180 if (!package_elements) {
181 acpi_ut_remove_reference(package_desc); 181 acpi_ut_remove_reference(package_desc);
182 return_PTR(NULL); 182 return_PTR(NULL);