summaryrefslogtreecommitdiffstats
path: root/src/Daemon/Daemon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Daemon/Daemon.cpp')
-rw-r--r--src/Daemon/Daemon.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Daemon/Daemon.cpp b/src/Daemon/Daemon.cpp
index 5bcbe232..185ff7f0 100644
--- a/src/Daemon/Daemon.cpp
+++ b/src/Daemon/Daemon.cpp
@@ -294,7 +294,7 @@ static void FindNewDumps(const char* pPath)
struct stat stats;
DIR *dp;
vector_string_t dirs;
- // get potential unsaved debugdumps
+ /* Get all debugdump directories in the pPath directory. */
dp = opendir(pPath);
if (dp == NULL)
{
@@ -305,7 +305,7 @@ static void FindNewDumps(const char* pPath)
while ((ep = readdir(dp)))
{
if (dot_or_dotdot(ep->d_name))
- continue;
+ continue; /* skip "." and ".." */
std::string dname = ssprintf("%s/%s", pPath, ep->d_name);
if (lstat(dname.c_str(), &stats) == 0)
{
@@ -317,6 +317,7 @@ static void FindNewDumps(const char* pPath)
}
closedir(dp);
+ // get potential unsaved debugdumps
vector_string_t::iterator itt = dirs.begin();
for (; itt != dirs.end(); ++itt)
{