summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-04-29 04:13:07 +0200
committerColin Guthrie <cguthrie@mandriva.org>2009-06-08 22:31:50 +0100
commit0660bc2dbd9c77792b6f42fea507b4cd8b4e860b (patch)
tree73053e54f4fdfc985cc9d41f9e58295fd723a518
parent14dd16ad13656d882245861a1f24ee36c3f6f072 (diff)
simple-protocol: don't hit an assert when we call connection_unlink() early
-rw-r--r--src/pulsecore/protocol-simple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/protocol-simple.c b/src/pulsecore/protocol-simple.c
index 44fe5973..776d74b6 100644
--- a/src/pulsecore/protocol-simple.c
+++ b/src/pulsecore/protocol-simple.c
@@ -130,7 +130,7 @@ static void connection_unlink(connection *c) {
c->io = NULL;
}
- pa_assert_se(pa_idxset_remove_by_data(c->protocol->connections, c, NULL) == c);
+ pa_idxset_remove_by_data(c->protocol->connections, c, NULL);
c->protocol = NULL;
connection_unref(c);
}