diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2008-10-03 16:13:32 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2008-10-03 16:13:32 +0000 |
commit | 621dab2328c1828ab669c1903c576c74f6ea6b19 (patch) | |
tree | 8d8aee0c56685cbf8952582871ab814e304471f5 /ext/pulse/pulsesink.c | |
parent | 419ede208d5ca0c8aac97a5b258d217f8abd03ce (diff) |
ext/pulse/: Return -1 instead of 0 in error cases. Fixes #554771.
Original commit message from CVS:
* ext/pulse/pulsesink.c: (gst_pulsesink_write):
* ext/pulse/pulsesrc.c: (gst_pulsesrc_read):
Return -1 instead of 0 in error cases. Fixes #554771.
Diffstat (limited to 'ext/pulse/pulsesink.c')
-rw-r--r-- | ext/pulse/pulsesink.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c index 33b51d54..e434bf40 100644 --- a/ext/pulse/pulsesink.c +++ b/ext/pulse/pulsesink.c @@ -717,10 +717,12 @@ gst_pulsesink_write (GstAudioSink * asink, gpointer data, guint length) return sum; + /* ERRORS */ unlock_and_fail: - - pa_threaded_mainloop_unlock (pulsesink->mainloop); - return 0; + { + pa_threaded_mainloop_unlock (pulsesink->mainloop); + return -1; + } } static guint |