]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdeModulePkg/BmpSupportLib: Refine type cast for pointer subtraction
authorHao Wu <hao.a.wu@intel.com>
Tue, 13 Feb 2018 02:23:51 +0000 (10:23 +0800)
committerHao Wu <hao.a.wu@intel.com>
Wed, 14 Feb 2018 00:19:47 +0000 (08:19 +0800)
Since the pointer subtraction here is not performed by pointers to
elements of the same array object. This might lead to potential issues,
such behavior is undefined according to C11 standard.

Refine the pointer subtraction expressions by casting each pointer to
UINTN first and then perform the subtraction.

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>

No differences found