From: Colin Ian King <colin.king at canonical.com>
To: devel@acpica.org
Subject: Re: [Devel] [PATCH] Check for failed string allocation and set Status accordingly
Date: Thu, 24 Mar 2016 17:24:15 +0000 [thread overview]
Message-ID: <56F422BF.8090106@canonical.com> (raw)
In-Reply-To: 94F2FBAB4432B54E8AACC7DFDE6C92E37E453D69@ORSMSX110.amr.corp.intel.com
[-- Attachment #1: Type: text/plain, Size: 2389 bytes --]
On 24/03/16 17:18, Moore, Robert wrote:
> The "temporary" part is true. We were using the code block to test the ExternalOp that came from ACPi 6.0.
>
> In truth, the interpreter should never see an external opcode because it will be surrounded by an If(0) conditional. So, the code block in question should probably go away completely.
>
> Bob
OK, so either this code gets ripped out, or we fix it with the small
fix, at least either way we clean up the code.
Colin
>
>
>> -----Original Message-----
>> From: Devel [mailto:devel-bounces(a)acpica.org] On Behalf Of Colin King
>> Sent: Tuesday, March 22, 2016 3:17 PM
>> To: devel(a)acpica.org
>> Subject: [Devel] [PATCH] Check for failed string allocation and set Status
>> accordingly
>>
>> From: Colin Ian King <colin.king(a)canonical.com>
>>
>> It is possible that AcpiUtCreateStringObject fails to allocate a string
>> object, so check for this condition and set Status to AE_NO_MEMORY to
>> indicate a memory allocation failure.
>>
>> Signed-off-by: Colin Ian King <colin.king(a)canonical.com>
>> ---
>> source/components/dispatcher/dsutils.c | 12 +++++++++---
>> 1 file changed, 9 insertions(+), 3 deletions(-)
>>
>> diff --git a/source/components/dispatcher/dsutils.c
>> b/source/components/dispatcher/dsutils.c
>> index 52e9ca8..124dc67 100644
>> --- a/source/components/dispatcher/dsutils.c
>> +++ b/source/components/dispatcher/dsutils.c
>> @@ -678,9 +678,15 @@ AcpiDsCreateOperand (
>> /* TBD: May only be temporary */
>>
>> ObjDesc = AcpiUtCreateStringObject ((ACPI_SIZE)
>> NameLength);
>> -
>> - strncpy (ObjDesc->String.Pointer, NameString,
>> NameLength);
>> - Status = AE_OK;
>> + if (!ObjDesc)
>> + {
>> + Status = AE_NO_MEMORY;
>> + }
>> + else
>> + {
>> + strncpy (ObjDesc->String.Pointer, NameString,
>> NameLength);
>> + Status = AE_OK;
>> + }
>> }
>> else
>> {
>> --
>> 2.7.3
>>
>> _______________________________________________
>> Devel mailing list
>> Devel(a)acpica.org
>> https://lists.acpica.org/mailman/listinfo/devel
next reply other threads:[~2016-03-24 17:24 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-24 17:24 Colin Ian King [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-03-24 17:18 [Devel] [PATCH] Check for failed string allocation and set Status accordingly Moore, Robert
2016-03-22 22:16 Colin King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56F422BF.8090106@canonical.com \
--to=devel@acpica.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.