diff options
author | jxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-12-11 13:08:40 +0000 |
---|---|---|
committer | jxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-12-11 13:08:40 +0000 |
commit | 85d44fbf27137b6949ee3148bc9428201006cfac (patch) | |
tree | dbb09ca2158f8475f8877bc2680c4149ad0955a0 /ace/Dirent.i | |
parent | a45306af7b85f62f5e3a7f6c2ee01e96e233d358 (diff) | |
download | ATCD-85d44fbf27137b6949ee3148bc9428201006cfac.tar.gz |
Constructor with a path passed in was not initializing dirp_.
Diffstat (limited to 'ace/Dirent.i')
-rw-r--r-- | ace/Dirent.i | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ace/Dirent.i b/ace/Dirent.i index 6d2eb7f8e11..5e12d7b6ba7 100644 --- a/ace/Dirent.i +++ b/ace/Dirent.i @@ -29,6 +29,7 @@ ACE_Dirent::ACE_Dirent (void) ACE_INLINE ACE_Dirent::ACE_Dirent (const char *dirname) + : dirp_ (0) { if (this->open (dirname) == -1) ACE_ERROR ((LM_ERROR, |