diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-09-27 20:55:04 +0200 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-10-16 22:56:18 +0200 |
commit | d081f27fc28d3a0f9fbb6045e4121709bc303028 (patch) | |
tree | ce946f6dee72996cbcde883b918dd7454be41672 /lib/efi_loader | |
parent | b50f075286f953abb2f056ecda76ac034b3a1787 (diff) |
efi_loader: efi_dp_get_next_instance() superfluous statement
Remove a superfluous statement in efi_dp_get_next_instance().
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib/efi_loader')
-rw-r--r-- | lib/efi_loader/efi_device_path.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_device_path.c b/lib/efi_loader/efi_device_path.c index 5a61a1c1dc..46a24f7882 100644 --- a/lib/efi_loader/efi_device_path.c +++ b/lib/efi_loader/efi_device_path.c @@ -382,7 +382,6 @@ struct efi_device_path *efi_dp_get_next_instance(struct efi_device_path **dp, *size = 0; if (!dp || !*dp) return NULL; - p = *dp; sz = efi_dp_instance_size(*dp); p = dp_alloc(sz + sizeof(END)); if (!p) |