diff options
author | Amar Tumballi <amar@gluster.com> | 2011-01-24 20:35:44 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2011-01-26 23:42:28 -0800 |
commit | 11dd59b788334fe2de1653ae85395986ba531606 (patch) | |
tree | 72b46794675c3713ea228a1829acaa190b73374e /rpc/rpc-lib/src/rpc-transport.c | |
parent | 40cdb88962cff1d32cd46cb089ad8bcd9be3d62d (diff) |
rpc: handle proper 'ref', 'unref' of transport from rpc-clnt
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 2250 ([glusterfs-3.1.2qa2]: SegFault in rpc-clnt.c)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2250
Diffstat (limited to 'rpc/rpc-lib/src/rpc-transport.c')
-rw-r--r-- | rpc/rpc-lib/src/rpc-transport.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpc/rpc-lib/src/rpc-transport.c b/rpc/rpc-lib/src/rpc-transport.c index bf0e4dfd6..249c9398f 100644 --- a/rpc/rpc-lib/src/rpc-transport.c +++ b/rpc/rpc-lib/src/rpc-transport.c @@ -1124,7 +1124,8 @@ rpc_transport_unref (rpc_transport_t *this) pthread_mutex_unlock (&this->lock); if (refcount == 0) { - this->notify (this, this->mydata, RPC_TRANSPORT_CLEANUP, NULL); + if (this->mydata) + this->notify (this, this->mydata, RPC_TRANSPORT_CLEANUP, NULL); rpc_transport_destroy (this); } |