Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-08-08 23:46:48 +0400
committerChristopher Faylor <me@cgf.cx>2005-08-08 23:46:48 +0400
commitc9508cb4ecd076d3b9d6cdf75befe9743907b522 (patch)
tree362ee38b74874153c5d69fefc40fa364ef88a925 /winsup/cygserver/cygserver.cc
parentd4c8f095ba17f14aa4f206a706496ed19d897a34 (diff)
* cygserver.cc (main): Call wincap.init() earlier to avoid a NULL dereference.
Diffstat (limited to 'winsup/cygserver/cygserver.cc')
-rw-r--r--winsup/cygserver/cygserver.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygserver/cygserver.cc b/winsup/cygserver/cygserver.cc
index 5cf82f38e..d19f1755c 100644
--- a/winsup/cygserver/cygserver.cc
+++ b/winsup/cygserver/cygserver.cc
@@ -567,6 +567,8 @@ main (const int argc, char *argv[])
int opt;
+ wincap.init ();
+
opterr = 0;
while ((opt = getopt_long (argc, argv, opts, longopts, NULL)) != EOF)
switch (opt)
@@ -701,7 +703,6 @@ main (const int argc, char *argv[])
if (support_semaphores == TUN_UNDEF)
support_semaphores = TUN_TRUE;
- wincap.init ();
if (wincap.has_security () && !setup_privileges ())
panic ("Setting process privileges failed.");