From: Heinrich Schuchardt Date: Mon, 16 Apr 2018 05:59:07 +0000 (+0200) Subject: efi_loader: correctly determine length of empty device path X-Git-Tag: v2018.05-rc3~41^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=adb575124d717b57bb2abb9e63875cb23601c44b;p=platform%2Fkernel%2Fu-boot.git efi_loader: correctly determine length of empty device path efi_dp_size() is meant to return the device path length without the end node. The length of a device path containing only an end node was incorrectly reported as 4. Signed-off-by: Heinrich Schuchardt Signed-off-by: Alexander Graf --- diff --git a/lib/efi_loader/efi_device_path.c b/lib/efi_loader/efi_device_path.c index 9b4d9ae..a2e4885 100644 --- a/lib/efi_loader/efi_device_path.c +++ b/lib/efi_loader/efi_device_path.c @@ -234,6 +234,8 @@ unsigned efi_dp_size(const struct efi_device_path *dp) { unsigned sz = 0; + if (!dp || dp->type == DEVICE_PATH_TYPE_END) + return 0; while (dp) { sz += dp->length; dp = efi_dp_next(dp);