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

Commit 12dfd16c authored by Long Ling's avatar Long Ling Committed by Presubmit Automerger Backend
Browse files

[automerge] SF: fix metadata blob copy 2p: a462878f 2p: 9887e58e

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

Bug: 216393140
Change-Id: I60549ea725468a7fee4b3761d7bc18c132d79c4f
parents c255951a 9887e58e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ template <>
AidlPerFrameMetadataBlob translate(IComposerClient::PerFrameMetadataBlob x) {
    AidlPerFrameMetadataBlob blob;
    blob.key = translate<AidlPerFrameMetadataKey>(x.key),
    std::copy(blob.blob.begin(), blob.blob.end(), x.blob.begin());
    std::copy(x.blob.begin(), x.blob.end(), std::inserter(blob.blob, blob.blob.end()));
    return blob;
}