aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Wagner <bungeman@chromium.org>2023-05-03 15:08:23 -0400
committerJoshua Peraza <jperaza@chromium.org>2023-05-03 19:25:20 +0000
commit6e319cac57ef30f98a5c79c54efee1584f018491 (patch)
tree66a623e6ca5f6a7ef4df9119919a3fa7ae0fef5d
parent3ea3af42d3ea0a61dfb2688a4466318ce5649afa (diff)
downloadgoogle-breakpad-6e319cac57ef30f98a5c79c54efee1584f018491.tar.gz
Fix MDRawModuleCrashpadInfoList::modules type
MDRawModuleCrashpadInfoList::modules is a flexible array of MDRawModuleCrashpadInfoLink and not MDLocationDescriptor. Breakpad does not currently use the MDRawModuleCrashpadInfoList type, but its definition should be updated to reflect the correct type to avoid confusion. Change-Id: If97f490db8d41529b59a225a275a37116746c2b7 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/4504150 Reviewed-by: Joshua Peraza <jperaza@chromium.org>
-rw-r--r--src/google_breakpad/common/minidump_format.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/google_breakpad/common/minidump_format.h b/src/google_breakpad/common/minidump_format.h
index 1526afce..802cc7e3 100644
--- a/src/google_breakpad/common/minidump_format.h
+++ b/src/google_breakpad/common/minidump_format.h
@@ -1122,7 +1122,7 @@ typedef struct {
typedef struct {
uint32_t count;
- MDLocationDescriptor modules[0]; /* MDRawModuleCrashpadInfoLink */
+ MDRawModuleCrashpadInfoLink modules[0];
} MDRawModuleCrashpadInfoList;
typedef struct {