loader.efi: variable 'hlist' is uninitialized

framebuffer.c:481:65: error: variable 'hlist' is uninitialized
This commit is contained in:
Toomas Soome 2021-01-17 13:46:00 +02:00
parent fb3a792a88
commit 9adce1aedd

View File

@ -478,6 +478,7 @@ efi_find_framebuffer(teken_gfx_t *gfx_state)
gfx_state->tg_fb_type = FB_TEXT;
hsize = 0;
hlist = NULL;
status = BS->LocateHandle(ByProtocol, &gop_guid, NULL, &hsize, hlist);
if (status == EFI_BUFFER_TOO_SMALL) {
hlist = malloc(hsize);