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

Commit 6990844e authored by Fabián Cañas's avatar Fabián Cañas Committed by Gerrit Code Review
Browse files

Merge "Avoid bad string conversion in RecordedBinder error log"

parents 69e22e9e cdf3b756
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;
    }