summaryrefslogtreecommitdiff
path: root/testprogs
diff options
context:
space:
mode:
Diffstat (limited to 'testprogs')
-rwxr-xr-xtestprogs/win32/npecho/npecho_client.c6
1 files changed, 3 insertions, 3 deletions
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;
}