From ffbd9313e20ad3aa1c2f95c7e7731fd01cc60eaa Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 28 Sep 2005 13:55:19 +0000 Subject: r10577: Fix error in ReadFile() (This used to be commit 04b8c473d7d55d4d802631074843e43fe7d9cfea) --- testprogs/win32/npecho/npecho_client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testprogs/win32') diff --git a/testprogs/win32/npecho/npecho_client.c b/testprogs/win32/npecho/npecho_client.c index 4131bd3792..97d31c4318 100755 --- a/testprogs/win32/npecho/npecho_client.c +++ b/testprogs/win32/npecho/npecho_client.c @@ -13,7 +13,7 @@ int main(int argc, char *argv[]) { HANDLE h; DWORD numread = 0; - char outbuffer[512]; + char *outbuffer = malloc(strlen(ECHODATA)); if (argc == 1) { printf("Usage: %s pipename\n", argv[0]); @@ -27,12 +27,12 @@ int main(int argc, char *argv[]) return -1; } - if (!WriteFile(h, ECHODATA, strlen(ECHODATA), NULL, NULL)) { + if (!WriteFile(h, ECHODATA, strlen(ECHODATA), &numread, NULL)) { printf("Error writing: %d\n", GetLastError()); return -1; } - if (!ReadFile(h, outbuffer, strlen(ECHODATA), NULL, NULL)) { + if (!ReadFile(h, outbuffer, strlen(ECHODATA), &numread, NULL)) { printf("Error reading: %d\n", GetLastError()); return -1; } -- cgit