You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2016/09/15 17:43:01 UTC

qpid-proton git commit: PROTON-1301: Fix leak in c-condition-test.

Repository: qpid-proton
Updated Branches:
  refs/heads/master 258f90ec8 -> 0e768cd35


PROTON-1301: Fix leak in c-condition-test.


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/0e768cd3
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/0e768cd3
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/0e768cd3

Branch: refs/heads/master
Commit: 0e768cd3522d0baf0f7f1ba4226d6816572aff4a
Parents: 258f90e
Author: Alan Conway <ac...@redhat.com>
Authored: Thu Sep 15 12:26:29 2016 -0500
Committer: Alan Conway <ac...@redhat.com>
Committed: Thu Sep 15 12:26:29 2016 -0500

----------------------------------------------------------------------
 proton-c/src/tests/condition.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/0e768cd3/proton-c/src/tests/condition.c
----------------------------------------------------------------------
diff --git a/proton-c/src/tests/condition.c b/proton-c/src/tests/condition.c
index b7d63be..5ecc263 100644
--- a/proton-c/src/tests/condition.c
+++ b/proton-c/src/tests/condition.c
@@ -51,6 +51,6 @@ int main(int argc, char **argv) {
     TEST_ASSERT(!pn_condition_get_name(cond));
     TEST_ASSERT(!pn_condition_get_description(cond));
 
-    pn_connection_release(c);
+    pn_connection_free(c);
     return fail;
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org