1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r10577: Fix error in ReadFile()

This commit is contained in:
Jelmer Vernooij 2005-09-28 13:55:19 +00:00 committed by Gerald (Jerry) Carter
parent 30ba8fdc3d
commit 04b8c473d7

View File

@ -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;
}