MdeModulePkg/UdfDxe: Fix operands of different size in bitwise OP
Cc: Paulo Alcantara <pcacjr@zytor.com> Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Star Zeng <star.zeng@intel.com> Cc: Eric Dong <eric.dong@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Paulo Alcantara <pcacjr@zytor.com> Reviewed-by: Star Zeng <star.zeng@intel.com>
This commit is contained in:
@@ -806,7 +806,7 @@ UdfGetInfo (
|
||||
}
|
||||
|
||||
if (Index < 128) {
|
||||
*String |= *(UINT8 *)(OstaCompressed + Index);
|
||||
*String |= (CHAR16)(*(UINT8 *)(OstaCompressed + Index));
|
||||
}
|
||||
|
||||
//
|
||||
|
Reference in New Issue
Block a user