pike.git/
src/
modules/
Gz/
zlibmod.c
Branch:
Tag:
Non-build tags
All tags
No tags
1997-10-21
1997-10-21 17:45:40 by Henrik Grubbström (Grubba) <grubba@grubba.org>
cadacf8dfadd530c5cd12cda11e6ef7d9529d1b6 (
7
lines) (+
5
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
low_make_buf_space() is still not thread-safe.
Rev: src/modules/Gz/zlibmod.c:1.14
4:
||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h"
-
RCSID("$Id: zlibmod.c,v 1.
13
1997/10/21 17:
44
:
21
grubba Exp $");
+
RCSID("$Id: zlibmod.c,v 1.
14
1997/10/21 17:
45
:
40
grubba Exp $");
#include "zlib_machine.h"
248:
int fail=0; THREADS_ALLOW(); mt_lock(& this->lock);
+
THREADS_DISALLOW();
if(!this->gz.state) { fail=Z_STREAM_ERROR;
257:
char *loc; int ret; loc=low_make_buf_space(BUF,buf);
+
THREADS_ALLOW();
this->gz.next_out=(Bytef *)loc; this->gz.avail_out=BUF; ret=inflate(& this->gz, flush);
-
+
THREADS_DISALLOW();
low_make_buf_space(-this->gz.avail_out,buf); if(ret != Z_OK) {
269:
} while(!this->gz.avail_out || flush==Z_FINISH || this->gz.avail_in); } mt_unlock(& this->lock);
-
THREADS_DISALLOW();
+
return fail; }