diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-03-25 03:44:49 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-03-25 03:44:49 +0100 |
commit | c367a885dcaa6f935d11b9cbe2fd1e0dfbef3249 (patch) | |
tree | e7853b1f4796a89c867b29a2c92a8ea3678d7482 | |
parent | f6a6d013546025806a0449ae51dde70de8baff57 (diff) |
fix misplace _ref() calls that should have been _assert_ref()
-rw-r--r-- | src/pulsecore/protocol-esound.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pulsecore/protocol-esound.c b/src/pulsecore/protocol-esound.c index 83d39929..a024471c 100644 --- a/src/pulsecore/protocol-esound.c +++ b/src/pulsecore/protocol-esound.c @@ -562,7 +562,7 @@ static int esd_proto_get_latency(connection *c, esd_proto_t request, const void pa_sink *sink; int32_t latency; - connection_ref(c); + connection_assert_ref(c); pa_assert(!data); pa_assert(length == 0); @@ -575,6 +575,7 @@ static int esd_proto_get_latency(connection *c, esd_proto_t request, const void latency = PA_MAYBE_INT32_SWAP(c->swap_byte_order, latency); connection_write(c, &latency, sizeof(int32_t)); + return 0; } @@ -583,7 +584,7 @@ static int esd_proto_server_info(connection *c, esd_proto_t request, const void int32_t response; pa_sink *sink; - connection_ref(c); + connection_assert_ref(c); pa_assert(data); pa_assert(length == sizeof(int32_t)); @@ -611,7 +612,7 @@ static int esd_proto_all_info(connection *c, esd_proto_t request, const void *da unsigned nsamples; char terminator[sizeof(int32_t)*6+ESD_NAME_MAX]; - connection_ref(c); + connection_assert_ref(c); pa_assert(data); pa_assert(length == sizeof(int32_t)); |