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:
authorCorinna Vinschen <corinna@vinschen.de>2002-06-13 15:35:11 +0400
committerCorinna Vinschen <corinna@vinschen.de>2002-06-13 15:35:11 +0400
commit5682a6dd3d5a5a213a860f66738f4fdd99f5c47e (patch)
treef68c9f5c6943facc5a46d6316fee767088d6dbba /winsup/cygwin/cygheap.h
parentdc8971488e7c174ab4084cbdb0a8f12c39b738d7 (diff)
* cygheap.cc (cygheap_user::set_name): Remove setting homedrive and
homepath to NULL. (cygheap_user::set_logsrv): Fix free'ing of plogsrv. * cygheap.h (cygheap_user::cygheap_user): Initialize homedrive and homepath to NULL.
Diffstat (limited to 'winsup/cygwin/cygheap.h')
-rw-r--r--winsup/cygwin/cygheap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/cygheap.h b/winsup/cygwin/cygheap.h
index e4fbe5fcb..71c00aca8 100644
--- a/winsup/cygwin/cygheap.h
+++ b/winsup/cygwin/cygheap.h
@@ -117,6 +117,7 @@ public:
BOOL impersonated;
cygheap_user () : pname (NULL), plogsrv (NULL), pdomain (NULL),
+ homedrive (NULL), homepath (NULL),
psid (NULL), token (INVALID_HANDLE_VALUE) {}
~cygheap_user ();