mirror of
https://github.com/facebook/zstd.git
synced 2025-07-30 22:23:13 +03:00
fileio_asyncio: handle malloc fails in AIO_ReadPool_create
This commit is contained in:
@ -551,6 +551,7 @@ ReadPoolCtx_t* AIO_ReadPool_create(const FIO_prefs_t* prefs, size_t bufferSize)
|
||||
AIO_IOPool_init(&ctx->base, prefs, AIO_ReadPool_executeReadJob, bufferSize);
|
||||
|
||||
ctx->coalesceBuffer = (U8*) malloc(bufferSize * 2);
|
||||
if(!ctx->coalesceBuffer) EXM_THROW(100, "Allocation error : not enough memory");
|
||||
ctx->srcBuffer = ctx->coalesceBuffer;
|
||||
ctx->srcBufferLoaded = 0;
|
||||
ctx->completedJobsCount = 0;
|
||||
|
Reference in New Issue
Block a user