From b810da2788d0aca491bee55b0f9d97b48e682bbf Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 3 Nov 2017 22:18:18 +0000 Subject: Remove flags param from FXMEM_DefaultAlloc() and friends. Change-Id: I24404be0065156a1cfdec31bafdf72c27fa70142 Reviewed-on: https://pdfium-review.googlesource.com/17792 Reviewed-by: Chris Palmer Commit-Queue: Lei Zhang --- core/fxcodec/codec/ccodec_tiffmodule.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/fxcodec/codec') diff --git a/core/fxcodec/codec/ccodec_tiffmodule.cpp b/core/fxcodec/codec/ccodec_tiffmodule.cpp index a5b70c6899..0bf0045261 100644 --- a/core/fxcodec/codec/ccodec_tiffmodule.cpp +++ b/core/fxcodec/codec/ccodec_tiffmodule.cpp @@ -69,16 +69,16 @@ void* _TIFFcalloc(tmsize_t nmemb, tmsize_t siz) { } void* _TIFFmalloc(tmsize_t size) { - return FXMEM_DefaultAlloc(size, 0); + return FXMEM_DefaultAlloc(size); } void _TIFFfree(void* ptr) { if (ptr) - FXMEM_DefaultFree(ptr, 0); + FXMEM_DefaultFree(ptr); } void* _TIFFrealloc(void* ptr, tmsize_t size) { - return FXMEM_DefaultRealloc(ptr, size, 0); + return FXMEM_DefaultRealloc(ptr, size); } void _TIFFmemset(void* ptr, int val, tmsize_t size) { -- cgit v1.2.3