Fix insertion of signatures from a file.
This commit is contained in:
parent
5aca172458
commit
308dd72e6c
28
0001-Fix-a-casting-problem-on-32-bit.patch
Normal file
28
0001-Fix-a-casting-problem-on-32-bit.patch
Normal file
@ -0,0 +1,28 @@
|
||||
From 9eb2814858270af2d7ecfbfa5ca131e7be2f9f53 Mon Sep 17 00:00:00 2001
|
||||
From: Peter Jones <pjones@redhat.com>
|
||||
Date: Mon, 3 Dec 2012 08:47:22 -0500
|
||||
Subject: [PATCH] Fix a casting problem on 32-bit.
|
||||
|
||||
Not that we really care about i686, but...
|
||||
|
||||
Signed-off-by: Peter Jones <pjones@redhat.com>
|
||||
---
|
||||
src/wincert.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/wincert.c b/src/wincert.c
|
||||
index 5caaa6e..4197a87 100644
|
||||
--- a/src/wincert.c
|
||||
+++ b/src/wincert.c
|
||||
@@ -141,7 +141,7 @@ done:
|
||||
|
||||
tmpcert = (win_certificate *)((uint8_t *)certs + n);
|
||||
|
||||
- if ((uint64_t)tmpcert > (uint64_t)map + map_size)
|
||||
+ if ((intptr_t)tmpcert > (intptr_t)map + map_size)
|
||||
return -1;
|
||||
|
||||
/* length _includes_ the size of the structure. */
|
||||
--
|
||||
1.8.0
|
||||
|
@ -19,6 +19,7 @@ ExclusiveArch: i686 x86_64 ia64
|
||||
# git checkout %%{version}
|
||||
Source0: pesign-%{version}.tar.bz2
|
||||
Source1: rh-test-certs.tar.bz2
|
||||
Patch0: 0001-Fix-a-casting-problem-on-32-bit.patch
|
||||
|
||||
%description
|
||||
This package contains the pesign utility for signing UEFI binaries as
|
||||
|
Loading…
Reference in New Issue
Block a user