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

Commit 6642c914 authored by Long Ling's avatar Long Ling Committed by Android (Google) Code Review
Browse files

Merge changes from topic "presubmit-am-c42945565164424eb2608e3ad1886691" into tm-mainline-prod

* changes:
  [automerge] SF: fix metadata blob copy 2p: a462878f
  SF: fix metadata blob copy
parents b3442877 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;
}