mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 16:14:04 +02:00
BaseTools: Update RETURN_ERROR Macro in BaseTypes.h
This patch is to sync RETURN_ERROR macro with the MdePkg/Include/Base.h Ref: 1a89d9887f MdePkg:Update Return Error Macro in Base.h Fixing RETURN_ERROR macro. It is causing problem in Coverity Static analysis tool as we are directly converting the UINT value to INTN. Changing value from UINT to INTN might cause problema Here we know that the values would not be in loss of data. To increase the code quality and increase the static tool analysis score we have to change it Cc: Rebecca Cran <rebecca@bsdio.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Bob Feng <bob.c.feng@intel.com> Cc: Yuwei Chen <yuwei.chen@intel.com> Signed-off-by: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
This commit is contained in:
parent
c358009352
commit
222e2854fe
@ -4,6 +4,8 @@
|
||||
This file is stand alone self consistent set of definitions.
|
||||
|
||||
Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (C) 2024 Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
**/
|
||||
@ -202,7 +204,7 @@ typedef UINTN RETURN_STATUS;
|
||||
#define ENCODE_ERROR(a) ((RETURN_STATUS)(MAX_BIT | (a)))
|
||||
|
||||
#define ENCODE_WARNING(a) ((RETURN_STATUS)(a))
|
||||
#define RETURN_ERROR(a) (((INTN)(RETURN_STATUS)(a)) < 0)
|
||||
#define RETURN_ERROR(a) (((RETURN_STATUS)(a)) >= MAX_BIT)
|
||||
|
||||
#define RETURN_SUCCESS 0
|
||||
#define RETURN_LOAD_ERROR ENCODE_ERROR (1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user