mirror of https://github.com/acidanthera/audk.git
BaseTools: CommonLib Fix Crash to write the last byte
Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
parent
66833b2a87
commit
4faf534046
|
@ -335,7 +335,7 @@ Returns:
|
|||
printf("%x\n", Byte);
|
||||
Value = End + 1;
|
||||
}
|
||||
Buffer = malloc(*Size);
|
||||
Buffer = malloc(*Size + 1);
|
||||
if (Buffer == NULL) {
|
||||
*Size = 0;
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue