mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-24 04:05:41 +01:00
Fix MDRawCrashpadAnnotationList::objects type
MDRawCrashpadAnnotationList::objects is a flexible array of MDRawCrashpadAnnotation and not MDLocationDescriptor. Breakpad does not currently use the MDRawCrashpadAnnotationList type, but its definition should be updated to reflect the correct type to avoid confusion. Change-Id: I58b5b0e4f7f95bc003b103e2750e3759c3e31292 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/4503630 Reviewed-by: Joshua Peraza <jperaza@chromium.org>
This commit is contained in:
parent
6e319cac57
commit
837b0f5d52
@ -1105,7 +1105,7 @@ typedef struct {
|
|||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint32_t count;
|
uint32_t count;
|
||||||
MDLocationDescriptor objects[0]; /* MDRawCrashpadAnnotation */
|
MDRawCrashpadAnnotation objects[0];
|
||||||
} MDRawCrashpadAnnotationList;
|
} MDRawCrashpadAnnotationList;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user