summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/stream.c b/runtime/stream.c
index 9e88eca1..ff4515fc 100644
--- a/runtime/stream.c
+++ b/runtime/stream.c
@@ -1068,7 +1068,7 @@ doZipWrite(strm_t *pThis, uchar *pBuf, size_t lenBuf)
assert(pThis != NULL);
assert(pBuf != NULL);
- pthread_mutex_lock(&mut);
+ //pthread_mutex_lock(&mut);
/* allocate deflate state */
zstrm.zalloc = Z_NULL;
@@ -1108,7 +1108,7 @@ finalize_it:
}
}
- pthread_mutex_unlock(&mut);
+ //pthread_mutex_unlock(&mut);
RETiRet;
}