Bug 568723 – g_buffered_input_stream_fill_async doesn't take count == -1

2009-01-22  Ryan Lortie  <desrt@desrt.ca>

        Bug 568723 – g_buffered_input_stream_fill_async doesn't take count == -1

        * gbufferedinputstream.c (g_buffered_input_stream_fill_async,
        g_buffered_input_stream_fill): check for count < -1 instead of count <
        0 and copy modified check to non-async version for consistency.
        document the "count = -1" API.


svn path=/trunk/; revision=7828
This commit is contained in:
Ryan Lortie
2009-01-22 19:18:26 +00:00
committed by Ryan Lortie
parent fb50c2ae1a
commit fc10cb46ad
2 changed files with 24 additions and 2 deletions

View File

@@ -1,3 +1,12 @@
2009-01-22 Ryan Lortie <desrt@desrt.ca>
Bug 568723 g_buffered_input_stream_fill_async doesn't take count == -1
* gbufferedinputstream.c (g_buffered_input_stream_fill_async,
g_buffered_input_stream_fill): check for count < -1 instead of count <
0 and copy modified check to non-async version for consistency.
document the "count = -1" API.
2009-01-22 Ryan Lortie <desrt@desrt.ca>
Bug 568741 g_buffered_input_stream_fill_async doesn't work