efi_loader: HII protocols: fix new_package_list()
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 28 Feb 2019 22:07:00 +0000 (23:07 +0100)
committerHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 2 Mar 2019 22:34:26 +0000 (23:34 +0100)
commitfdef298338e4e775d41ab77b25edb695b2d8e1c0
treed6ad8e5a47179248e57fd505d075a9afd85bf43b
parent30a231dcce0b4daf6102cffcdc5c81db8ddaaa48
efi_loader: HII protocols: fix new_package_list()

In new_package_list() we call new_packagelist() to create a new package
list. Next we try to add the packages which fails for form packages. Due
to this error we call free_packagelist(). Now in free_packagelist()
list_del() is called for an uninitialized field hii->link. This leads to
changing random memory addresses.

To solve the problem move the initialization of hii->link to
new_packagelist().

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
lib/efi_loader/efi_hii.c