diff options
author | Marc Laukien <marc@zeroc.com> | 2003-01-04 23:54:52 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-01-04 23:54:52 +0000 |
commit | 516ded9316177b567b71be2d8d23ba0913bde0b0 (patch) | |
tree | bd882b69603246d33fb183a5d437701834f91ddc /cpp/src/IcePatch/Server.cpp | |
parent | IcePatch bug fixes (diff) | |
download | ice-516ded9316177b567b71be2d8d23ba0913bde0b0.tar.bz2 ice-516ded9316177b567b71be2d8d23ba0913bde0b0.tar.xz ice-516ded9316177b567b71be2d8d23ba0913bde0b0.zip |
IcePatch fixes
Diffstat (limited to 'cpp/src/IcePatch/Server.cpp')
-rw-r--r-- | cpp/src/IcePatch/Server.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/IcePatch/Server.cpp b/cpp/src/IcePatch/Server.cpp index 54103864ee7..e7f416d1195 100644 --- a/cpp/src/IcePatch/Server.cpp +++ b/cpp/src/IcePatch/Server.cpp @@ -230,13 +230,13 @@ IcePatch::Updater::destroy() void IcePatch::Updater::cleanup(const FileDescSeq& fileDescSeq) { - if(_destroy) - { - return; - } - for(FileDescSeq::const_iterator p = fileDescSeq.begin(); p != fileDescSeq.end(); ++p) { + if(_destroy) + { + return; + } + DirectoryDescPtr directoryDesc = DirectoryDescPtr::dynamicCast(*p); if(directoryDesc) { |