summaryrefslogtreecommitdiff
path: root/src/own.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-08-12 15:03:51 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-08-25 15:39:20 +0200
commit45f83d78a56f4b3a812c87fec03a75558445b2ab (patch)
tree1adba1798c914baf65929d89ed9725dd68672bd6 /src/own.cpp
parent936dbf956b0f1471a96fc06bcba67765257dbc4a (diff)
one more dezombification bug fixed
Diffstat (limited to 'src/own.cpp')
-rw-r--r--src/own.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/own.cpp b/src/own.cpp
index d90e9c4..f8252ab 100644
--- a/src/own.cpp
+++ b/src/own.cpp
@@ -192,7 +192,12 @@ void zmq::own_t::check_term_acks ()
send_term_ack (owner);
// Deallocate the resources.
- delete this;
+ process_destroy ();
}
}
+void zmq::own_t::process_destroy ()
+{
+ delete this;
+}
+