summaryrefslogtreecommitdiffstats
path: root/src/pulsecore
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-08-13 17:31:58 +0000
committerLennart Poettering <lennart@poettering.net>2006-08-13 17:31:58 +0000
commitabbabd848a3ece49d58f59c88edc379d73bbd77e (patch)
tree2640a7b005f7386f4552310bfe9fdf53907e62d3 /src/pulsecore
parent72cf2118df6a3cb0515bcb426e2dc57c781fa2b1 (diff)
ignore if we recieved a memory block for an invalid stream, since this might happen unwillingly due to the asychnronous nature of the protocol
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1241 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore')
-rw-r--r--src/pulsecore/protocol-native.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/protocol-native.c b/src/pulsecore/protocol-native.c
index f922fb55..e5344448 100644
--- a/src/pulsecore/protocol-native.c
+++ b/src/pulsecore/protocol-native.c
@@ -2201,7 +2201,7 @@ static void pstream_memblock_callback(pa_pstream *p, uint32_t channel, int64_t o
if (!(stream = pa_idxset_get_by_index(c->output_streams, channel))) {
pa_log(__FILE__": client sent block for invalid stream.");
- connection_free(c);
+ /* Ignoring */
return;
}