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

Commit 688e294b authored by Fabián Cañas's avatar Fabián Cañas Committed by Automerger Merge Worker
Browse files

Merge "Avoid bad string conversion in RecordedBinder error log" am: 6990844e am: 2f8bd5aa

parents e40a8e99 2f8bd5aa
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -127,8 +127,7 @@ std::optional<RecordedTransaction> RecordedTransaction::fromDetails(
    t.mData.mInterfaceName = std::string(String8(interfaceName).string());
    if (interfaceName.size() != t.mData.mInterfaceName.size()) {
        LOG(ERROR) << "Interface Name is not valid. Contains characters that aren't single byte "
                      "utf-8: "
                   << interfaceName;
                      "utf-8.";
        return std::nullopt;
    }