mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-11-29 06:31:28 +01:00
efi_loader: incorrect buffer size in efi_file_setinfo()
When copying a string with must allocate a byte for the terminating '\0' in
the target buffer.
Fixes: fbe4c7df0087 ("efi_loader: enable file SetInfo()")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
337c97d935
commit
792aee1150
@ -723,7 +723,7 @@ static efi_status_t EFIAPI efi_file_setinfo(struct efi_file_handle *file,
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
/* Check for renaming */
|
/* Check for renaming */
|
||||||
new_file_name = malloc(utf16_utf8_strlen(info->file_name));
|
new_file_name = malloc(utf16_utf8_strlen(info->file_name) + 1);
|
||||||
if (!new_file_name) {
|
if (!new_file_name) {
|
||||||
ret = EFI_OUT_OF_RESOURCES;
|
ret = EFI_OUT_OF_RESOURCES;
|
||||||
goto out;
|
goto out;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user