decompression errors always display the full origin filename

instead of the truncated size-limited version.
This commit is contained in:
Yann Collet
2024-04-01 11:49:21 -07:00
parent 72c16b187d
commit a2f145f059
2 changed files with 11 additions and 18 deletions
+1 -1
View File
@@ -268,7 +268,7 @@ static void AIO_IOPool_destroy(IOPoolCtx_t* ctx) {
/* AIO_IOPool_acquireJob:
* Returns an available io job to be used for a future io. */
static IOJob_t* AIO_IOPool_acquireJob(IOPoolCtx_t* ctx) {
IOJob_t *job;
IOJob_t* job;
assert(ctx->file != NULL || ctx->prefs->testMode);
AIO_IOPool_lockJobsMutex(ctx);
assert(ctx->availableJobsCount > 0);