This is the mail archive of the cygwin-patches mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Cygwin: Use correct string conversion


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]