From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id D7B88740038 for ; Tue, 19 Dec 2023 01:00:44 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=2Ro5IjNn8nqs1MO7Hqg+7PtZF+b8xHeK34RqoNJ/Wz4=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1702947643; v=1; b=JmVpiemihvMzUp9eiAy2kHsbdZy6riRcLNyCw8gF+utxI3XbeNDCZ6Z7zqy46oLcG2xP0GIh S8lHWkv/PRXGVZWHn/q1NZeeXc+GZwyV0LVTOccXmfSsKwRJ40io7bG3PqbkGVk41OLXHRsVLlM Ybbxuk+0W4VwU199u9bY6oNQ= X-Received: by 127.0.0.2 with SMTP id YS9rYY7687511xshpKmwXefk; Mon, 18 Dec 2023 17:00:43 -0800 X-Received: from mail-lj1-f179.google.com (mail-lj1-f179.google.com [209.85.208.179]) by mx.groups.io with SMTP id smtpd.web11.404.1702947642565486028 for ; Mon, 18 Dec 2023 17:00:42 -0800 X-Received: by mail-lj1-f179.google.com with SMTP id 38308e7fff4ca-2cb21afa6c1so53322271fa.0 for ; Mon, 18 Dec 2023 17:00:42 -0800 (PST) X-Gm-Message-State: gLvgb6fHxbdYlCeoapSi61M1x7686176AA= X-Google-Smtp-Source: AGHT+IEG3heBfswA1BDQolXjUIMLZJCEycXpTAtOtu9b9cdX051sr2dYcijnCLhlteuLxVzobWMhNQ== X-Received: by 2002:a2e:808d:0:b0:2cc:575b:db55 with SMTP id i13-20020a2e808d000000b002cc575bdb55mr2478632ljg.65.1702947640584; Mon, 18 Dec 2023 17:00:40 -0800 (PST) X-Received: from localhost.localdomain ([79.164.221.98]) by smtp.gmail.com with ESMTPSA id i2-20020a2e8082000000b002cc5c149dd3sm1019032ljg.120.2023.12.18.17.00.39 (version=TLS1_3 cipher=TLS_CHACHA20_POLY1305_SHA256 bits=256/256); Mon, 18 Dec 2023 17:00:40 -0800 (PST) From: "Mike Maslenkin" To: devel@edk2.groups.io Cc: abner.chang@amd.com, nicklew@nvidia.com, igork@ami.com, Mike Maslenkin Subject: [edk2-devel] [edk2-redfish-client][PATCH v2 3/3] RedfishClientPkg: fix access to unitialized variable. Date: Tue, 19 Dec 2023 04:00:23 +0300 Message-Id: <20231219010023.56603-4-mike.maslenkin@gmail.com> In-Reply-To: <20231219010023.56603-1-mike.maslenkin@gmail.com> References: <20231219010023.56603-1-mike.maslenkin@gmail.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mike.maslenkin@gmail.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=JmVpiemi; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=gmail.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io It is possible that at the time of accessing to AsciiLocation pointer the memory is not allocated. Also gcc version 4.8.5 20150623 (Red Hat 4.8.5-44) emits a warning for this case: RedfishFeatureUtilityLib.c:1889:37: error: 'AsciiLocation' may be used unin= itialized in this function [-Werror=3Dmaybe-uninitialized] *Location =3D StrAsciiToUnicode (AsciiLocation); Cc: Abner Chang Cc: Igor Kulchytskyy Signed-off-by: Mike Maslenkin Reviewed-by: Nickle Wang --- .../RedfishFeatureUtilityLib/RedfishFeatureUtilityLib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RedfishClientPkg/Library/RedfishFeatureUtilityLib/RedfishFeatu= reUtilityLib.c b/RedfishClientPkg/Library/RedfishFeatureUtilityLib/RedfishF= eatureUtilityLib.c index 0f0b050d7eba..01c054ae3b70 100644 --- a/RedfishClientPkg/Library/RedfishFeatureUtilityLib/RedfishFeatureUtili= tyLib.c +++ b/RedfishClientPkg/Library/RedfishFeatureUtilityLib/RedfishFeatureUtili= tyLib.c @@ -1856,7 +1856,8 @@ GetEtagAndLocation ( }=0D =0D if (Location !=3D NULL) {=0D - *Location =3D NULL;=0D + *Location =3D NULL;=0D + AsciiLocation =3D NULL;=0D =0D if (*(Response->StatusCode) =3D=3D HTTP_STATUS_200_OK) {=0D Header =3D HttpFindHeader (Response->HeaderCount, Response->Headers,= HTTP_HEADER_LOCATION);=0D --=20 2.32.0 (Apple Git-132) -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#112660): https://edk2.groups.io/g/devel/message/112660 Mute This Topic: https://groups.io/mt/103255138/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-