diff options
author | Nicolas Pena <npm@chromium.org> | 2017-04-18 15:36:29 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-18 20:24:11 +0000 |
commit | 152bfe0f60763263e8bf7292762885eb2aec9b85 (patch) | |
tree | 0ab40515446a4a4d8c779d39aae0707682a9fffe /third_party/libtiff/tiffio.h | |
parent | 9bd8b4c8687cc95bed5df131ca8764f9ce203944 (diff) | |
download | pdfium-152bfe0f60763263e8bf7292762885eb2aec9b85.tar.xz |
Libtiff upstream: _TIFFcalloc addition
Upstream commit:
https://github.com/vadz/libtiff/commit/d60332057b9575ada4f264489582b13e30137be1
Bug: chromium:711638
Change-Id: I46de1a00f9bb8d5de8df64ec78a9d62dcb4352ed
Reviewed-on: https://pdfium-review.googlesource.com/4310
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: Nicolás Peña <npm@chromium.org>
Diffstat (limited to 'third_party/libtiff/tiffio.h')
-rw-r--r-- | third_party/libtiff/tiffio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/libtiff/tiffio.h b/third_party/libtiff/tiffio.h index dd6c9a4294..7d0da761fc 100644 --- a/third_party/libtiff/tiffio.h +++ b/third_party/libtiff/tiffio.h @@ -293,6 +293,7 @@ extern TIFFCodec* TIFFGetConfiguredCODECs(void); */ extern void* _TIFFmalloc(tmsize_t s); +extern void* _TIFFcalloc(tmsize_t nmemb, tmsize_t siz); extern void* _TIFFrealloc(void* p, tmsize_t s); extern void _TIFFmemset(void* p, int v, tmsize_t c); extern void _TIFFmemcpy(void* d, const void* s, tmsize_t c); |