Blame SOURCES/0006-Promote-_make_hd_dn-to-make_hd_dn-and-get-rid-of-the.patch

529d1b
From bd8fc0ebe86da82468b40a4998c3000819e73afe Mon Sep 17 00:00:00 2001
529d1b
From: Peter Jones <pjones@redhat.com>
529d1b
Date: Tue, 12 Jun 2018 14:36:20 -0400
529d1b
Subject: [PATCH 06/17] Promote _make_hd_dn() to make_hd_dn() and get rid of
529d1b
 the wrapper.
529d1b
529d1b
The wrapper is just hiding what the code's doing, and all the other code
529d1b
around where we use it does the same thing anyway.  This hopefully
529d1b
convinces coverity we're not really dereferencing "buf" there unless
529d1b
it's nonzero.
529d1b
529d1b
Signed-off-by: Peter Jones <pjones@redhat.com>
529d1b
---
529d1b
 src/creator.c  | 3 ++-
529d1b
 src/disk.c     | 4 ++--
529d1b
 src/dp-media.c | 2 ++
529d1b
 src/disk.h     | 7 ++-----
529d1b
 4 files changed, 8 insertions(+), 8 deletions(-)
529d1b
529d1b
diff --git a/src/creator.c b/src/creator.c
529d1b
index 93f185fc0bc..76c1c1f7a99 100644
529d1b
--- a/src/creator.c
529d1b
+++ b/src/creator.c
529d1b
@@ -281,7 +281,8 @@ efi_va_generate_file_device_path_from_esp(uint8_t *buf, ssize_t size,
529d1b
 			goto err;
529d1b
 		}
529d1b
 
529d1b
-		sz = make_hd_dn(buf, size, off, disk_fd, dev->part, options);
529d1b
+		sz = make_hd_dn(buf+off, size?size-off:0,
529d1b
+                                disk_fd, dev->part, options);
529d1b
 		saved_errno = errno;
529d1b
 		close(disk_fd);
529d1b
 		errno = saved_errno;
529d1b
diff --git a/src/disk.c b/src/disk.c
529d1b
index deac512cf71..3efee03b804 100644
529d1b
--- a/src/disk.c
529d1b
+++ b/src/disk.c
529d1b
@@ -257,8 +257,8 @@ is_partitioned(int fd)
529d1b
 }
529d1b
 
529d1b
 ssize_t HIDDEN
529d1b
-_make_hd_dn(uint8_t *buf, ssize_t size, int fd, int32_t partition,
529d1b
-	    uint32_t options)
529d1b
+make_hd_dn(uint8_t *buf, ssize_t size, int fd, int32_t partition,
529d1b
+           uint32_t options)
529d1b
 {
529d1b
 	uint64_t part_start=0, part_size = 0;
529d1b
 	uint8_t signature[16]="", format=0, signature_type=0;
529d1b
diff --git a/src/dp-media.c b/src/dp-media.c
529d1b
index 0a0993ec3f4..cec6b8bb58d 100644
529d1b
--- a/src/dp-media.c
529d1b
+++ b/src/dp-media.c
529d1b
@@ -161,6 +161,7 @@ efidp_make_file(uint8_t *buf, ssize_t size, char *filepath)
529d1b
 	ssize_t sz;
529d1b
 	ssize_t len = utf8len(lf, -1) + 1;
529d1b
 	ssize_t req = sizeof (*file) + len * sizeof (uint16_t);
529d1b
+
529d1b
 	sz = efidp_make_generic(buf, size, EFIDP_MEDIA_TYPE, EFIDP_MEDIA_FILE,
529d1b
 				req);
529d1b
 	if (size && sz == req) {
529d1b
@@ -182,6 +183,7 @@ efidp_make_hd(uint8_t *buf, ssize_t size, uint32_t num, uint64_t part_start,
529d1b
 	efidp_hd *hd = (efidp_hd *)buf;
529d1b
 	ssize_t sz;
529d1b
 	ssize_t req = sizeof (*hd);
529d1b
+
529d1b
 	sz = efidp_make_generic(buf, size, EFIDP_MEDIA_TYPE, EFIDP_MEDIA_HD,
529d1b
 				req);
529d1b
 	if (size && sz == req) {
529d1b
diff --git a/src/disk.h b/src/disk.h
529d1b
index c040cc92a91..f0fa7f9f42d 100644
529d1b
--- a/src/disk.h
529d1b
+++ b/src/disk.h
529d1b
@@ -23,10 +23,7 @@
529d1b
 
529d1b
 extern bool HIDDEN is_partitioned(int fd);
529d1b
 
529d1b
-extern HIDDEN ssize_t _make_hd_dn(uint8_t *buf, ssize_t size, int fd,
529d1b
-                                  int32_t partition, uint32_t options);
529d1b
-#define make_hd_dn(buf, size, off, fd, partition, option) \
529d1b
-	_make_hd_dn(((buf)+(off)), ((size)?((size)-(off)):0), (fd),\
529d1b
-		    (partition), (options))
529d1b
+extern HIDDEN ssize_t make_hd_dn(uint8_t *buf, ssize_t size, int fd,
529d1b
+                                 int32_t partition, uint32_t options);
529d1b
 
529d1b
 #endif /* _EFIBOOT_DISK_H */
529d1b
-- 
529d1b
2.17.1
529d1b