summaryrefslogtreecommitdiffstats
path: root/qga/channel-win32.c
diff options
context:
space:
mode:
authorMichael Roth2015-10-17 17:31:16 +0200
committerMichael Roth2015-10-20 01:31:54 +0200
commite853ea1cc68716c3d9c22d04578020c6dd743306 (patch)
treee31523f403f063da2978028d4636d5df12bfc56f /qga/channel-win32.c
parentqga: guest-exec simple stdin/stdout/stderr redirection (diff)
downloadqemu-e853ea1cc68716c3d9c22d04578020c6dd743306.tar.gz
qemu-e853ea1cc68716c3d9c22d04578020c6dd743306.tar.xz
qemu-e853ea1cc68716c3d9c22d04578020c6dd743306.zip
qga: fix uninitialized value warning for win32
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Diffstat (limited to 'qga/channel-win32.c')
-rw-r--r--qga/channel-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qga/channel-win32.c b/qga/channel-win32.c
index 215b15a7f5..0452b9f75e 100644
--- a/qga/channel-win32.c
+++ b/qga/channel-win32.c
@@ -269,7 +269,7 @@ static GIOStatus ga_channel_write(GAChannel *c, const char *buf, size_t size,
GIOStatus ga_channel_write_all(GAChannel *c, const char *buf, size_t size)
{
GIOStatus status = G_IO_STATUS_NORMAL;
- size_t count;
+ size_t count = 0;
while (size) {
status = ga_channel_write(c, buf, size, &count);