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:
Diffstat (limited to 'winsup/cygwin/cygserver.cc')
-rwxr-xr-xwinsup/cygwin/cygserver.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/cygserver.cc b/winsup/cygwin/cygserver.cc
index b3472a10d..c48c5c662 100755
--- a/winsup/cygwin/cygserver.cc
+++ b/winsup/cygwin/cygserver.cc
@@ -402,7 +402,7 @@ public:
virtual ~server_request()
{
- safe_delete (transport_layer_base, _conn);
+ safe_delete (_conn);
}
virtual void process ()
@@ -764,7 +764,7 @@ main (const int argc, char *argv[])
printf ("\nShutdown request received - new requests will be denied\n");
request_queue.stop ();
printf ("All pending requests processed\n");
- safe_delete (transport_layer_base, transport);
+ safe_delete (transport);
printf ("No longer accepting requests - cygwin will operate in daemonless mode\n");
cache.stop ();
printf ("All outstanding process-cache activities completed\n");