From: b1f6c1c4 Date: Sun, 27 Dec 2020 00:15:54 +0000 (-0500) Subject: [efi] Allow for longer device paths in debug messages X-Git-Tag: v1.21.1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=485f8ce5547f5c165b4eeecb388bc7e1ce5cad12;p=thirdparty%2Fipxe.git [efi] Allow for longer device paths in debug messages Modified-by: Michael Brown Signed-off-by: Michael Brown --- diff --git a/src/interface/efi/efi_debug.c b/src/interface/efi/efi_debug.c index 6515b92c8..967bb6182 100644 --- a/src/interface/efi/efi_debug.c +++ b/src/interface/efi/efi_debug.c @@ -374,7 +374,7 @@ void dbg_efi_protocols ( EFI_HANDLE handle ) { const __attribute__ (( pure )) char * efi_devpath_text ( EFI_DEVICE_PATH_PROTOCOL *path ) { EFI_BOOT_SERVICES *bs = efi_systab->BootServices; - static char text[256]; + static char text[512]; size_t len; CHAR16 *wtext;