From 77fe179480b1a2c39f92128b24f45515d8070edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Thu, 27 Feb 1997 01:14:21 -0800 Subject: [PATCH] fix for threads.. Rev: src/modules/Gz/zlibmod.c:1.4 --- src/modules/Gz/zlibmod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/Gz/zlibmod.c b/src/modules/Gz/zlibmod.c index 0256457dc9..82374cddde 100644 --- a/src/modules/Gz/zlibmod.c +++ b/src/modules/Gz/zlibmod.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: zlibmod.c,v 1.3 1997/02/27 09:10:52 hubbe Exp $"); +RCSID("$Id: zlibmod.c,v 1.4 1997/02/27 09:14:21 hubbe Exp $"); #include "zlib_machine.h" #include "types.h" @@ -314,7 +314,7 @@ static void gz_inflate(INT32 args) static void init_gz_inflate(struct object *o) { - mt_init(& THIS->locked); + mt_init(& THIS->lock); MEMSET(& THIS->gz, 0, sizeof(THIS->gz)); THIS->gz.zalloc=Z_NULL; THIS->gz.zfree=Z_NULL; -- GitLab