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

Commit 9887e58e authored by Long Ling's avatar Long Ling Committed by Presubmit Automerger Backend
Browse files

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

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

Bug: 216393140
Change-Id: I7b039eb1ec2fc944096689b3d9018c2cacc034c6
parents c58ee1a3 a462878f
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;
}