From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42787) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1anbEV-0007iT-1S for qemu-devel@nongnu.org; Tue, 05 Apr 2016 20:22:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1anbER-0003LY-SA for qemu-devel@nongnu.org; Tue, 05 Apr 2016 20:22:06 -0400 Received: from e35.co.us.ibm.com ([32.97.110.153]:34182) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1anbER-0003KM-ML for qemu-devel@nongnu.org; Tue, 05 Apr 2016 20:22:03 -0400 Received: from localhost by e35.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 5 Apr 2016 18:22:01 -0600 From: Stefan Berger Date: Tue, 5 Apr 2016 20:21:50 -0400 Message-Id: <1459902110-9856-1-git-send-email-stefanb@us.ibm.com> Subject: [Qemu-devel] [PATCH v2] tpm: Fix write to file descriptor function List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-trivial@nongnu.org, qemu-devel@nongnu.org Cc: Stefan Berger , Stefan Berger Fix a bug introduced in commit 46f296c while moving send_all to the tpm_passthrough code. Fix the name of the variable used in the loop. Signed-off-by: Stefan Berger --- hw/tpm/tpm_passthrough.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/tpm/tpm_passthrough.c b/hw/tpm/tpm_passthrough.c index e98efb7..e88c0d2 100644 --- a/hw/tpm/tpm_passthrough.c +++ b/hw/tpm/tpm_passthrough.c @@ -86,7 +86,7 @@ static int tpm_passthrough_unix_write(int fd, const uint8_t *buf, uint32_t len) int ret, remain; remain = len; - while (len > 0) { + while (remain > 0) { ret = write(fd, buf, remain); if (ret < 0) { if (errno != EINTR && errno != EAGAIN) { -- 2.5.5