Loading install/adb_install.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -167,7 +167,7 @@ static bool HandleMessageFromMinadbd(int socket_fd, if (command_type == MinadbdCommand::kError) { return false; } if (command_map.find(command_type) == command_map.end()) { if (!command_map.contains(command_type)) { LOG(ERROR) << "Unsupported command: " << android::base::get_unaligned<unsigned int>( message.substr(strlen(kMinadbdCommandPrefix)).c_str()); Loading minadbd/minadbd_services.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -233,7 +233,7 @@ static void RescueGetpropHostService(unique_fd sfd, const std::string& prop) { } result += "[" + key + "]: [" + value + "]\n"; } } else if (kGetpropAllowedProps.find(prop) != kGetpropAllowedProps.end()) { } else if (kGetpropAllowedProps.contains(prop)) { result = query_prop(prop) + "\n"; } if (result.empty()) { Loading Loading
install/adb_install.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -167,7 +167,7 @@ static bool HandleMessageFromMinadbd(int socket_fd, if (command_type == MinadbdCommand::kError) { return false; } if (command_map.find(command_type) == command_map.end()) { if (!command_map.contains(command_type)) { LOG(ERROR) << "Unsupported command: " << android::base::get_unaligned<unsigned int>( message.substr(strlen(kMinadbdCommandPrefix)).c_str()); Loading
minadbd/minadbd_services.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -233,7 +233,7 @@ static void RescueGetpropHostService(unique_fd sfd, const std::string& prop) { } result += "[" + key + "]: [" + value + "]\n"; } } else if (kGetpropAllowedProps.find(prop) != kGetpropAllowedProps.end()) { } else if (kGetpropAllowedProps.contains(prop)) { result = query_prop(prop) + "\n"; } if (result.empty()) { Loading