Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac2b7ce7 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "libbinder: use flexible array member instead of 0 sized array" am: 1ed06aac am: 66f47f35

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1803336

Change-Id: I29e6b357bceaf060eed95285dda9a6458e3f2d74
parents 1444f812 66f47f35
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -115,12 +115,12 @@ struct RpcWireTransaction {

    uint32_t reserved[4];

    uint8_t data[0];
    uint8_t data[];
};

struct RpcWireReply {
    int32_t status; // transact return
    uint8_t data[0];
    uint8_t data[];
};

#pragma clang diagnostic pop