diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-02-02 14:55:56 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-02-02 14:55:56 +0000 |
commit | b2ecea774653937bfe4e840898d25a01207b91fb (patch) | |
tree | b07f1134f8f054fb85ec93fdfe1539b1a25bb22c /cpp/src/IceGrid/Activator.cpp | |
parent | Fixed memory corruption problem (diff) | |
download | ice-b2ecea774653937bfe4e840898d25a01207b91fb.tar.bz2 ice-b2ecea774653937bfe4e840898d25a01207b91fb.tar.xz ice-b2ecea774653937bfe4e840898d25a01207b91fb.zip |
Fixed bug 782
Diffstat (limited to 'cpp/src/IceGrid/Activator.cpp')
-rw-r--r-- | cpp/src/IceGrid/Activator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Activator.cpp b/cpp/src/IceGrid/Activator.cpp index b9d8976a8bb..323e22b5b97 100644 --- a/cpp/src/IceGrid/Activator.cpp +++ b/cpp/src/IceGrid/Activator.cpp @@ -791,7 +791,7 @@ Activator::deactivate(const string& name, const Ice::ProcessPrx& process) out << "sent Ctrl+Break to server `" << name << "' (pid = " << pid << ")"; } } - else + else if(GetLastError() != ERROR_INVALID_PARAMETER) // Process with pid doesn't exist anymore. { SyscallException ex(__FILE__, __LINE__); ex.error = getSystemErrno(); |