diff options
| author | Garrett D'Amore <garrett@damore.org> | 2018-07-20 13:14:29 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2018-07-20 13:14:29 -0700 |
| commit | 6549cdc1bcbdfc205ec52be095084a700c78daa1 (patch) | |
| tree | 26b0e72d350fc1dfd37b119f41c867befc79d23e /src | |
| parent | d4d49cef92356778215c757e8f6d1d0d35662a64 (diff) | |
| download | nng-6549cdc1bcbdfc205ec52be095084a700c78daa1.tar.gz nng-6549cdc1bcbdfc205ec52be095084a700c78daa1.tar.bz2 nng-6549cdc1bcbdfc205ec52be095084a700c78daa1.zip | |
fixes #604 pipe free does not finalize cv
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/pipe.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/pipe.c b/src/core/pipe.c index bac9203b..4f50ac7c 100644 --- a/src/core/pipe.c +++ b/src/core/pipe.c @@ -94,6 +94,7 @@ pipe_destroy(nni_pipe *p) p->p_tran_ops.p_fini(p->p_tran_data); } nni_aio_fini(p->p_start_aio); + nni_cv_fini(&p->p_cv); nni_mtx_fini(&p->p_mtx); NNI_FREE_STRUCT(p); } |
