aboutsummaryrefslogtreecommitdiffstats
path: root/minadbd
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-02-26 21:59:31 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-02-26 21:59:32 +0000
commitcab0beb95adce79b0c33488b5a503cac7dca6e77 (patch)
treee4edc38a4f6c6aebe04559423d3c2e8136dec8cf /minadbd
parentc9bc3cc92a2c2f584b28049238c4a583c80f149d (diff)
parent190977157bbb7118a9416614d5e9492114bc2fc5 (diff)
downloadbootable_recovery-cab0beb95adce79b0c33488b5a503cac7dca6e77.zip
bootable_recovery-cab0beb95adce79b0c33488b5a503cac7dca6e77.tar.gz
bootable_recovery-cab0beb95adce79b0c33488b5a503cac7dca6e77.tar.bz2
Merge "This read accidentally got turned in to a write."
Diffstat (limited to 'minadbd')
-rw-r--r--minadbd/fuse_adb_provider.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/minadbd/fuse_adb_provider.c b/minadbd/fuse_adb_provider.c
index 300e3c7..0d71072 100644
--- a/minadbd/fuse_adb_provider.c
+++ b/minadbd/fuse_adb_provider.c
@@ -42,7 +42,7 @@ static int read_block_adb(void* cookie, uint32_t block, uint8_t* buffer, uint32_
return -EIO;
}
- if (!WriteFdExactly(ad->sfd, buffer, fetch_size)) {
+ if (!ReadFdExactly(ad->sfd, buffer, fetch_size)) {
fprintf(stderr, "failed to read from adb host: %s\n", strerror(errno));
return -EIO;
}