diff options
author | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2006-03-06 16:57:05 (GMT) |
---|---|---|
committer | Mathieu Malaterre <mathieu.malaterre@gmail.com> | 2006-03-06 16:57:05 (GMT) |
commit | e34d666fc713c6853496c2bcaaff5786353f1e22 (patch) | |
tree | 40da49d87d377a7d85629bd0374066f1b36252a7 /Source/kwsys/Directory.cxx | |
parent | 70e6fe3f9b4db9a18bf5cc063893a1b838be17be (diff) | |
download | CMake-e34d666fc713c6853496c2bcaaff5786353f1e22.zip CMake-e34d666fc713c6853496c2bcaaff5786353f1e22.tar.gz CMake-e34d666fc713c6853496c2bcaaff5786353f1e22.tar.bz2 |
BUG: Need to reset internal structure in case of multiple calls to Load
Diffstat (limited to 'Source/kwsys/Directory.cxx')
-rw-r--r-- | Source/kwsys/Directory.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/kwsys/Directory.cxx b/Source/kwsys/Directory.cxx index 727e61a..f3e302f 100644 --- a/Source/kwsys/Directory.cxx +++ b/Source/kwsys/Directory.cxx @@ -76,6 +76,13 @@ const char* Directory::GetPath() const return this->Internal->Path.c_str(); } +//---------------------------------------------------------------------------- +void Directory::Clear() +{ + this->Internal->Path.clear(); + this->Internal->Files.clear(); +} + } // namespace KWSYS_NAMESPACE // First microsoft compilers @@ -96,6 +103,7 @@ namespace KWSYS_NAMESPACE bool Directory::Load(const char* name) { + this->Clear(); #if _MSC_VER < 1300 long srchHandle; #else @@ -148,6 +156,7 @@ namespace KWSYS_NAMESPACE bool Directory::Load(const char* name) { + this->Clear(); DIR* dir = opendir(name); if (!dir) |