aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-01-08 16:41:47 +0000
committerGitHub <noreply@github.com>2025-01-08 16:41:47 +0000
commit30bb2250c7002767f6d5cb37a3fcca4e2375b61f (patch)
tree50c6a409080ee0c63a0537bffeb51b14014405dc
parent2a29322c91d13c08111ea4c9eac0cf86530a88bb (diff)
parent276dab69b69fb8429c3e2a2e4fc8f0cd994c010d (diff)
Merge pull request #4474 from tf2spi/4407-mdei-pack
Pack MDEI struct to fix issue #4407
-rw-r--r--core/sys/windows/dbghelp.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/windows/dbghelp.odin b/core/sys/windows/dbghelp.odin
index 336992b4a..e32b4c874 100644
--- a/core/sys/windows/dbghelp.odin
+++ b/core/sys/windows/dbghelp.odin
@@ -15,7 +15,7 @@ MINIDUMP_DIRECTORY :: struct {
Location: MINIDUMP_LOCATION_DESCRIPTOR,
}
-MINIDUMP_EXCEPTION_INFORMATION :: struct {
+MINIDUMP_EXCEPTION_INFORMATION :: struct #max_field_align(4) {
ThreadId: DWORD,
ExceptionPointers: ^EXCEPTION_POINTERS,
ClientPointers: BOOL,