Merge "NFC: Fix potentially uninitialized 'port' variable." am: f0d59e24c3

am: 68b69c35b7

Change-Id: I3df8fa238dfaba119caad661914f59489d5c8207
This commit is contained in:
Stephen Hines 2019-05-09 22:15:13 -07:00 committed by android-build-merger
commit e5c452085b
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ static int adb_get_emulator_console_port(const char* serial) {
return -1;
}
int port;
int port = -1;
size_t emulator_count = 0;
for (const auto& device : android::base::Split(devices, "\n")) {
if (sscanf(device.c_str(), "emulator-%d", &port) == 1) {