changed tsDLIterBD to tsDLIter

This commit is contained in:
Jeff Hill
2002-07-25 21:02:29 +00:00
parent 27d9ae81c6
commit e45a480dca
25 changed files with 131 additions and 143 deletions
+2 -2
View File
@@ -44,7 +44,7 @@ casCoreClient::~casCoreClient()
}
this->lock();
tsDLIterBD<casAsyncIOI> iterIO = this->ioInProgList.firstIter ();
tsDLIter<casAsyncIOI> iterIO = this->ioInProgList.firstIter ();
//
// cancel any pending asynchronous IO
@@ -53,7 +53,7 @@ casCoreClient::~casCoreClient()
//
// destructor removes from this list
//
tsDLIterBD <casAsyncIOI> tmpIO = iterIO;
tsDLIter <casAsyncIOI> tmpIO = iterIO;
++tmpIO;
iterIO->serverDestroy ();
iterIO = tmpIO;