mirror of
https://github.com/oSumAtrIX/free-librespot.git
synced 2025-12-19 09:54:25 +00:00
playback: pulseaudio: Panic in write if data is empty
This commit is contained in:
parent
014533a583
commit
0c18aa51ad
1 changed files with 1 additions and 0 deletions
|
|
@ -112,6 +112,7 @@ impl Sink for PulseAudioSink {
|
|||
} else {
|
||||
let ptr = data.as_ptr() as *const libc::c_void;
|
||||
let len = data.len() as usize * mem::size_of::<i16>();
|
||||
assert!(len > 0);
|
||||
call_pulseaudio(
|
||||
|err| unsafe { pa_simple_write(self.s, ptr, len, err) },
|
||||
|ret| ret < 0,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue