diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-01-07 22:50:31 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-01-07 22:50:31 -0800 |
| commit | f77debdd2bf8a6e478004f0f5ddd715b0845399c (patch) | |
| tree | 50a74983e410fe17355e2e70598a31eb4e68f0d9 /tests | |
| parent | 343faafe5cfc2ae990954e1de3c6010b82e81f89 (diff) | |
| download | nng-f77debdd2bf8a6e478004f0f5ddd715b0845399c.tar.gz nng-f77debdd2bf8a6e478004f0f5ddd715b0845399c.tar.bz2 nng-f77debdd2bf8a6e478004f0f5ddd715b0845399c.zip | |
Fix small message leak in pipeline test.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/pipeline.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/pipeline.c b/tests/pipeline.c index 14122630..d6af728f 100644 --- a/tests/pipeline.c +++ b/tests/pipeline.c @@ -97,6 +97,7 @@ Main({ So(nng_recvmsg(pull, &msg, 0) == 0); So(msg != NULL); CHECKSTR(msg, "hello"); + nng_msg_free(msg); }) }) |
