From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mx.groups.io with SMTP id smtpd.web10.7946.1678165949770901635 for ; Mon, 06 Mar 2023 21:12:29 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=YREVyybH; spf=pass (domain: intel.com, ip: 192.55.52.120, mailfrom: ajay.kadapathri@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1678165949; x=1709701949; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=e3ZWLRRXS3RNsR1nvqouOhLj+QaauF0mQDIrtbIjECM=; b=YREVyybHZjya3Yp9hoV65a6NT1O6fMnM2PplGvEA+KBVZGeCwGWccW4s SgLguJLUhjAii4Je5600XW6cyBjHOfXIfbIny2ER3uesPdPpkps82zfIi ptBxaSSuLALzcjO05SKnAAm8eW4vcvNSeTS0aFNs643e9n71qI5N/3X4V +LjX1zKjuaRavIC6mavuebEQqPRGfrAlJPQYI72vOywszuiULzCZ/5C4Z 002i3T8G5O1E0M9gjNX5sfQSe6c/vIfgXxRcW3ZWRVzQZuohwg8fgypI3 2xuh7heLctzPHcnQhfaQBIYGEUSLoiLHkPpwouL5P4ZUlfzMW0g9Ths66 g==; X-IronPort-AV: E=McAfee;i="6500,9779,10641"; a="334476403" X-IronPort-AV: E=Sophos;i="5.98,238,1673942400"; d="scan'208";a="334476403" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Mar 2023 21:12:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10641"; a="740598886" X-IronPort-AV: E=Sophos;i="5.98,238,1673942400"; d="scan'208";a="740598886" Received: from akadapat-mobl1.gar.corp.intel.com ([10.215.201.155]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Mar 2023 21:12:28 -0800 From: "Ajay Kadapathri" To: devel@edk2.groups.io Cc: Rebecca Cran , Michael D Kinney , Jayaprakash N Subject: [edk2-libc Patch 2/2] Incorporated review comments Date: Tue, 7 Mar 2023 10:41:50 +0530 Message-Id: <20230307051150.772-3-ajay.kadapathri@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230307051150.772-1-ajay.kadapathri@intel.com> References: <20230307051150.772-1-ajay.kadapathri@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Ajay Kadapathri --- .../PyMod-3.6.8/Modules/edk2module.c | 26 +++++++++---------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c index a0e6273..4c400b9 100644 --- a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c +++ b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/edk2module.c @@ -4257,26 +4257,24 @@ MiscRT_SetVariable(PyObject *self, PyObject *args) } +/** + This function prints a GUID to a buffer + + @param guid Pointer to a GUID + + @param str_buffer Pointer to a str buffer + + + @retval EFI_SUCCESS GUID was printed + + @retval EFI_INVALID_PARAMETER GUID was NULL +**/ EFI_STATUS GuidToStr ( IN EFI_GUID *guid, IN OUT UINT8 *str_buffer ) -/*++ - -Routine Description: - This function prints a GUID to a buffer - -Arguments: - guid - Pointer to a GUID - str_buffer - Pointer to a str buffer - -Returns: - EFI_SUCCESS GUID was printed - EFI_INVALID_PARAMETER GUID was NULL - ---*/ { if (guid == NULL) { return EFI_INVALID_PARAMETER; -- 2.39.1.windows.1