REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3211
Correct the arguments passed to the IsLanguageSupported() function in AddUnicodeString2() and LookupUnicodeString2() as expected by the function Cc: Michael D Kinney <michael.d.kin...@intel.com> Cc: Liming Gao <gaolim...@byosoft.com.cn> Cc: Zhiguang Liu <zhiguang....@intel.com> Signed-off-by: Chandramohan Akula <chandramohan.ak...@broadcom.com> --- MdePkg/Library/UefiLib/UefiLib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdePkg/Library/UefiLib/UefiLib.c b/MdePkg/Library/UefiLib/UefiLib.c index 835218f9824f..b6a33a0a488e 100644 --- a/MdePkg/Library/UefiLib/UefiLib.c +++ b/MdePkg/Library/UefiLib/UefiLib.c @@ -839,7 +839,7 @@ LookupUnicodeString2 ( SupportedLanguages += 3; } } else { - Found = !IsLanguageSupported(Language, SupportedLanguages); + Found = !IsLanguageSupported(SupportedLanguages, Language); } @@ -1133,7 +1133,7 @@ AddUnicodeString2 ( SupportedLanguages += 3; } } else { - Found = !IsLanguageSupported(Language, SupportedLanguages); + Found = !IsLanguageSupported(SupportedLanguages, Language); } // // If Language is not a member of SupportedLanguages, then return EFI_UNSUPPORTED -- 2.27.0 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#72528): https://edk2.groups.io/g/devel/message/72528 Mute This Topic: https://groups.io/mt/81166035/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-
smime.p7s
Description: S/MIME Cryptographic Signature