* ext/zlib/zlib.c (zstream_run_func): Fix bug that caused early exit

of GVL-free loop.  [Feature #6615]
* ext/zlib/zlib.c:  Fix style to match existing functions.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2012-07-03 05:52:22 +00:00
Родитель c7c397f917
Коммит 1884f1c0ab
2 изменённых файлов: 11 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Tue Jul 3 14:50:16 2012 Eric Hodel <drbrain@segment7.net>
* ext/zlib/zlib.c (zstream_run_func): Don't exit run loop for buffer
error. [Feature #6615]
* ext/zlib/zlib.c: Fix style to match existing functions.
Tue Jul 3 12:05:51 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/dl/cfunc.c (rb_dlcfunc_call): also needed the workaround for VC8

Просмотреть файл

@ -917,7 +917,8 @@ zstream_end(struct zstream *z)
}
static VALUE
zstream_run_func(void *ptr) {
zstream_run_func(void *ptr)
{
struct zstream_run_args *args = (struct zstream_run_args *)ptr;
int err, flush = args->flush;
struct zstream *z = args->z;
@ -934,7 +935,7 @@ zstream_run_func(void *ptr) {
break;
}
if (err != Z_OK)
if (err != Z_OK && err != Z_BUF_ERROR)
break;
if (z->stream.avail_out > 0) {
@ -955,7 +956,8 @@ zstream_run_func(void *ptr) {
* There is no safe way to interrupt z->run->func().
*/
static void
zstream_unblock_func(void *ptr) {
zstream_unblock_func(void *ptr)
{
struct zstream_run_args *args = (struct zstream_run_args *)ptr;
args->interrupt = 1;