From c22f60e6e55f1bf300dd76d2222a93911f3b2bb2 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Thu, 12 Oct 2023 04:00:49 +0000 Subject: automatic import of xen --- aarch64-maybe-uninitialized.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 aarch64-maybe-uninitialized.patch (limited to 'aarch64-maybe-uninitialized.patch') diff --git a/aarch64-maybe-uninitialized.patch b/aarch64-maybe-uninitialized.patch new file mode 100644 index 0000000..7877ba3 --- /dev/null +++ b/aarch64-maybe-uninitialized.patch @@ -0,0 +1,22 @@ +Index: xen-4.12.0-testing/tools/libxl/libxl_arm_acpi.c +=================================================================== +--- xen-4.12.0-testing.orig/tools/libxl/libxl_arm_acpi.c ++++ xen-4.12.0-testing/tools/libxl/libxl_arm_acpi.c +@@ -99,7 +99,7 @@ int libxl__get_acpi_size(libxl__gc *gc, + const libxl_domain_build_info *info, + uint64_t *out) + { +- uint64_t size; ++ uint64_t size = 0; + int rc = 0; + + +@@ -124,7 +124,7 @@ static int libxl__allocate_acpi_tables(l + struct acpitable acpitables[]) + { + int rc; +- size_t size; ++ size_t size = 0; + + acpitables[RSDP].addr = GUEST_ACPI_BASE; + acpitables[RSDP].size = sizeof(struct acpi_table_rsdp); -- cgit v1.2.3