diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-04-22 23:12:15 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-04-24 00:25:04 -0400 |
commit | ef42202ac8ed27e7ff1fc90ef8bc2590046dff25 (patch) | |
tree | b1646eeb8ef5070337ae701ffb4abf0e398640ad /src/test | |
parent | c79bb9e4e2e5b96b2ae2c432bf8b0ff9674fce60 (diff) |
Add set_consume which always takes ownership
Freeing in error path is the common pattern with set_put().
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-prioq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-prioq.c b/src/test/test-prioq.c index 73c640840a..aeac73973b 100644 --- a/src/test/test-prioq.c +++ b/src/test/test-prioq.c @@ -119,7 +119,7 @@ static void test_struct(void) { assert_se(r >= 0); if (i % 4 == 0) { - r = set_put(s, t); + r = set_consume(s, t); assert_se(r >= 0); } } |