defaultCustomNULL replaced with defaultCustomMem

This commit is contained in:
inikep
2016-06-03 13:28:20 +02:00
parent 36fac00149
commit 3763c77f6b
5 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ struct ZBUFF_DCtx_s {
ZBUFF_DCtx* ZBUFF_createDCtx(void)
{
return ZBUFF_createDCtx_advanced(defaultCustomNULL);
return ZBUFF_createDCtx_advanced(defaultCustomMem);
}
ZBUFF_DCtx* ZBUFF_createDCtx_advanced(ZSTD_customMem customMem)
+1 -1
View File
@@ -166,7 +166,7 @@ ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem)
ZSTD_DCtx* ZSTD_createDCtx(void)
{
return ZSTD_createDCtx_advanced(defaultCustomNULL);
return ZSTD_createDCtx_advanced(defaultCustomMem);
}