Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/NeutrinoRDP.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2018-07-30 08:09:14 +0300
committerJay Sorg <jay.sorg@gmail.com>2018-07-30 08:09:14 +0300
commit5526fa0d4da9c4f61be488ea2677f6df4c20e917 (patch)
tree01a1e68cd823e24e4bf35ef568f9318141e23024
parentcc851942d9368eda89ec49841afddcb64713332f (diff)
fix for 'Assertion '!e->next' failed at pulsecore/queue.c:104, function pa_queue_pop(). Aborting.'
-rw-r--r--channels/rdpsnd/pulse/rdpsnd_pulse.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/rdpsnd/pulse/rdpsnd_pulse.c b/channels/rdpsnd/pulse/rdpsnd_pulse.c
index 0610907..e299c4c 100644
--- a/channels/rdpsnd/pulse/rdpsnd_pulse.c
+++ b/channels/rdpsnd/pulse/rdpsnd_pulse.c
@@ -540,7 +540,9 @@ static void rdpsnd_pulse_start(rdpsndDevicePlugin* device)
if (!pulse->stream)
return;
+ pa_threaded_mainloop_lock(pulse->mainloop);
pa_stream_trigger(pulse->stream, NULL, NULL);
+ pa_threaded_mainloop_unlock(pulse->mainloop);
}
/******************************************************************************