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:
Liming Gao 2018-01-24 23:24:28 +08:00
parent 66833b2a87
commit 4faf534046
1 changed files with 1 additions and 1 deletions

View File

@ -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;