mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 06:07:05 -06:00
fix pointer initialization and minor changes to README of zstdmt
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
|
||||
/**
|
||||
* Copyright (c) 2016 Tino Reichardt
|
||||
* Copyright (c) 2016 - 2017 Tino Reichardt
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
@@ -542,7 +542,7 @@ size_t LZ4MT_decompressDCtx(LZ4MT_DCtx * ctx, LZ4MT_RdWr_t * rdwr)
|
||||
/* wait for all workers */
|
||||
for (t = 0; t < ctx->threads; t++) {
|
||||
cwork_t *wt = &ctx->cwork[t];
|
||||
void *p;
|
||||
void *p = 0;
|
||||
pthread_join(wt->pthread, &p);
|
||||
if (p)
|
||||
retval_of_thread = p;
|
||||
|
||||
Reference in New Issue
Block a user