mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fixed silly 'off by one' bug
svn path=/trunk/; revision=1885
This commit is contained in:
parent
d13046ca0f
commit
4304c92e6e
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ int main(int argc, char *argv[])
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
cbLength = (ULONG)strlen(lpszTestMessage);
|
cbLength = (ULONG)strlen(lpszTestMessage)+1;
|
||||||
|
|
||||||
WriteFile(hMailslot,
|
WriteFile(hMailslot,
|
||||||
lpszTestMessage,
|
lpszTestMessage,
|
||||||
|
|
Loading…
Reference in a new issue