hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
From ae8936f9c375e1a38129e85a1b5d573fb451f288 Mon Sep 17 00:00:00 2001
From: Peter Jones <pjones@redhat.com>
Date: Mon, 15 Feb 2021 14:14:24 +0100
Subject: [PATCH] util/mkimage: Always use grub_host_to_target32() to
 initialize PE stack and heap stuff
 
This change does not impact final result of initialization itself.
However, it eases PE code unification in subsequent patches.
 
Signed-off-by: Peter Jones <pjones@redhat.com>
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
Signed-off-by: Stefan Sørensen <stefan.sorensen@spectralink.com>
---
 util/mkimage.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
 
diff --git a/util/mkimage.c b/util/mkimage.c
index 02944f2..b94bfb7 100644
--- a/util/mkimage.c
+++ b/util/mkimage.c
@@ -1351,10 +1351,10 @@ grub_install_generate_image (const char *dir, const char *prefix,
         o->subsystem = grub_host_to_target16 (GRUB_PE32_SUBSYSTEM_EFI_APPLICATION);
 
         /* Do these really matter? */
-        o->stack_reserve_size = grub_host_to_target64 (0x10000);
-        o->stack_commit_size = grub_host_to_target64 (0x10000);
-        o->heap_reserve_size = grub_host_to_target64 (0x10000);
-        o->heap_commit_size = grub_host_to_target64 (0x10000);
+        o->stack_reserve_size = grub_host_to_target32 (0x10000);
+        o->stack_commit_size = grub_host_to_target32 (0x10000);
+        o->heap_reserve_size = grub_host_to_target32 (0x10000);
+        o->heap_commit_size = grub_host_to_target32 (0x10000);
     
         o->num_data_directories
           = grub_host_to_target32 (GRUB_PE32_NUM_DATA_DIRECTORIES);
-- 
2.14.2