From 668954c42f4a580d517d0b3d52266f984a5eca9a Mon Sep 17 00:00:00 2001 From: marcel Date: Thu, 6 Jan 2011 20:50:16 +0000 Subject: Help static analysis by initializing variables that we know cannot be used uninitialized, but which cannot be inferred from the code itself. --- sys/boot/efi/libefi/efinet.c | 1 + sys/boot/efi/libefi/efipart.c | 1 + 2 files changed, 2 insertions(+) (limited to 'sys/boot/efi') diff --git a/sys/boot/efi/libefi/efinet.c b/sys/boot/efi/libefi/efinet.c index 1eea860..5b3e401 100644 --- a/sys/boot/efi/libefi/efinet.c +++ b/sys/boot/efi/libefi/efinet.c @@ -262,6 +262,7 @@ efinet_dev_init() int err, i, nifs; sz = 0; + handles = NULL; status = BS->LocateHandle(ByProtocol, &sn_guid, 0, &sz, 0); if (status == EFI_BUFFER_TOO_SMALL) { handles = (EFI_HANDLE *)malloc(sz); diff --git a/sys/boot/efi/libefi/efipart.c b/sys/boot/efi/libefi/efipart.c index 4c8c170..4abac06 100644 --- a/sys/boot/efi/libefi/efipart.c +++ b/sys/boot/efi/libefi/efipart.c @@ -69,6 +69,7 @@ efipart_init(void) int err; sz = 0; + hin = NULL; status = BS->LocateHandle(ByProtocol, &blkio_guid, 0, &sz, 0); if (status == EFI_BUFFER_TOO_SMALL) { hin = (EFI_HANDLE *)malloc(sz * 2); -- cgit v1.1