mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-22 16:53:48 +00:00
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>
This commit is contained in:
parent
3ea3af42d3
commit
6e319cac57
1 changed files with 1 additions and 1 deletions
|
@ -1122,7 +1122,7 @@ typedef struct {
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint32_t count;
|
uint32_t count;
|
||||||
MDLocationDescriptor modules[0]; /* MDRawModuleCrashpadInfoLink */
|
MDRawModuleCrashpadInfoLink modules[0];
|
||||||
} MDRawModuleCrashpadInfoList;
|
} MDRawModuleCrashpadInfoList;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Reference in a new issue