commit | e853ea1cc68716c3d9c22d04578020c6dd743306 | [log] [tgz] |
---|---|---|
author | Michael Roth <mdroth@linux.vnet.ibm.com> | Sat Oct 17 10:31:16 2015 -0500 |
committer | Michael Roth <mdroth@linux.vnet.ibm.com> | Mon Oct 19 18:31:54 2015 -0500 |
tree | e31523f403f063da2978028d4636d5df12bfc56f | |
parent | a1853dca74362551ec1434b2e15acfcdd53caa99 [diff] |
qga: fix uninitialized value warning for win32 Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
diff --git a/qga/channel-win32.c b/qga/channel-win32.c index 215b15a..0452b9f 100644 --- a/qga/channel-win32.c +++ b/qga/channel-win32.c
@@ -269,7 +269,7 @@ 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);