This is the mail archive of the
cygwin-patches
mailing list for the Cygwin project.
[PATCH] Cygwin: Use correct string conversion
- From: Mark Geisert <mark at maxrnd dot com>
- To: cygwin-patches at cygwin dot com
- Cc: Mark Geisert <mark at maxrnd dot com>
- Date: Wed, 26 Jun 2019 22:31:56 -0700
- Subject: [PATCH] Cygwin: Use correct string conversion
- References: <20190626092744.GT5738@calimero.vinschen.de>
Correct the string conversion calls so both argv elements get converted
at full precision.
---
winsup/utils/cygwin-console-helper.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/winsup/utils/cygwin-console-helper.cc b/winsup/utils/cygwin-console-helper.cc
index 8f62ed7e6..0e04f4d18 100644
--- a/winsup/utils/cygwin-console-helper.cc
+++ b/winsup/utils/cygwin-console-helper.cc
@@ -5,9 +5,9 @@ main (int argc, char **argv)
char *end;
if (argc != 3)
exit (1);
- HANDLE h = (HANDLE) strtoul (argv[1], &end, 0);
+ HANDLE h = (HANDLE) strtoull (argv[1], &end, 0);
SetEvent (h);
- h = (HANDLE) strtoul (argv[2], &end, 0);
+ h = (HANDLE) strtoull (argv[2], &end, 0);
WaitForSingleObject (h, INFINITE);
exit (0);
}
--
2.21.0