diff options
Diffstat (limited to 'node/IpcListener.cpp')
-rw-r--r-- | node/IpcListener.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/IpcListener.cpp b/node/IpcListener.cpp index dc5ef52a..94cf065f 100644 --- a/node/IpcListener.cpp +++ b/node/IpcListener.cpp @@ -124,7 +124,7 @@ void IpcListener::threadMain() break; } try { - _handler(_arg,new IpcConnection(s,_handler,_arg),Ipcconnection::IPC_EVENT_NEW_CONNECTION,(const char *)0); + _handler(_arg,new IpcConnection(s,_handler,_arg),IpcConnection::IPC_EVENT_NEW_CONNECTION,(const char *)0); } catch ( ... ) {} // handlers should not throw } #endif |