]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
util/mkimage: Always use grub_host_to_target32() to initialize PE stack and heap...
authorPeter Jones <pjones@redhat.com>
Mon, 15 Feb 2021 13:14:24 +0000 (14:14 +0100)
committerDaniel Kiper <daniel.kiper@oracle.com>
Tue, 2 Mar 2021 14:54:19 +0000 (15:54 +0100)
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>
util/mkimage.c

index 02944f28e0445f96ecbd0bc58c6504531121611f..b94bfb781a90bc2bee40c2708217a7349b0ec8a7 100644 (file)
@@ -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);