Fix adb get-serialno error handling

If pipe read fails, return.
tcpip
Romain Vimont 3 years ago
parent 3653fb6b15
commit b0eb1a55d6

@ -304,6 +304,10 @@ adb_get_serialno(struct sc_intr *intr) {
return NULL;
}
if (r == -1) {
return false;
}
sc_str_truncate(buf, r, " \r\n");
return strdup(buf);

Loading…
Cancel
Save