From 82d15b68d4645b9e211ce1e0521487c06c47c5ce Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Mon, 15 Aug 2005 08:58:26 +0000 Subject: release 1.2 --- sshfs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sshfs.c') diff --git a/sshfs.c b/sshfs.c index b20b684..18ab34c 100644 --- a/sshfs.c +++ b/sshfs.c @@ -717,12 +717,14 @@ static int sftp_read(uint8_t *type, struct buffer *buf) buf_init(&buf2, 5); res = do_read(&buf2); if (res != -1) { - buf_get_uint32(&buf2, &len); + if (buf_get_uint32(&buf2, &len) == -1) + return -1; if (len > MAX_REPLY_LEN) { fprintf(stderr, "reply len too large: %u\n", len); return -1; } - buf_get_uint8(&buf2, type); + if (buf_get_uint8(&buf2, type) == -1) + return -1; buf_init(buf, len - 1); res = do_read(buf); } -- cgit v1.2.3