diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-15 14:07:40 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-20 22:26:15 +0000 |
commit | 97cf20861ac2a359bcde930d4ab17cec70da81f7 (patch) | |
tree | 37ec4765c805b3cda76c3fa383545efeaa146a31 /lib/efi_selftest | |
parent | 1f7a8b3389d66f279bf75fcfdd10c1c7d2561d6e (diff) | |
download | u-boot-97cf20861ac2a359bcde930d4ab17cec70da81f7.tar.gz |
efi_loader: QueryMode() must allocate buffer
EFI_GRAPHICS_OUTPUT_PROTOCOL.QueryMode() must allocate a buffer for the
mode information structure.
Adjust the unit test to free the buffer.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi_selftest')
-rw-r--r-- | lib/efi_selftest/efi_selftest_gop.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/efi_selftest/efi_selftest_gop.c b/lib/efi_selftest/efi_selftest_gop.c index 4ad043c597..d64294ac79 100644 --- a/lib/efi_selftest/efi_selftest_gop.c +++ b/lib/efi_selftest/efi_selftest_gop.c @@ -80,6 +80,11 @@ static int execute(void) } efi_st_printf("Mode %u: %u x %u\n", i, info->width, info->height); + ret = boottime->free_pool(info); + if (ret != EFI_SUCCESS) { + efi_st_printf("FreePool failed"); + return EFI_ST_FAILURE; + } } return EFI_ST_SUCCESS; |