summaryrefslogtreecommitdiff
path: root/libtiff/tif_read.c
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2017-11-17 20:20:59 +0000
committerEven Rouault <even.rouault@spatialys.com>2017-11-17 20:20:59 +0000
commit5426f499e886465717377014f3934fb3ca62cf66 (patch)
tree4351a1f125df0b826085d1d026298bae6026a954 /libtiff/tif_read.c
parent238b103ba5b40e27f5cb4eac2f6192de896dae26 (diff)
downloadlibtiff-git-5426f499e886465717377014f3934fb3ca62cf66.tar.gz
* libtiff/tif_aux.c, tif_getimage.c, tif_read.c: typo fixes in
comments.
Diffstat (limited to 'libtiff/tif_read.c')
-rw-r--r--libtiff/tif_read.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libtiff/tif_read.c b/libtiff/tif_read.c
index d5ce8377..2ba985a7 100644
--- a/libtiff/tif_read.c
+++ b/libtiff/tif_read.c
@@ -1,4 +1,4 @@
-/* $Id: tif_read.c,v 1.65 2017-07-15 12:33:25 erouault Exp $ */
+/* $Id: tif_read.c,v 1.66 2017-11-17 20:21:00 erouault Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -544,7 +544,7 @@ TIFFReadEncodedStrip(TIFF* tif, uint32 strip, void* buf, tmsize_t size)
/* Variant of TIFFReadEncodedStrip() that does
* * if *buf == NULL, *buf = _TIFFmalloc(bufsizetoalloc) only after TIFFFillStrip() has
- * suceeded. This avoid excessive memory allocation in case of truncated
+ * succeeded. This avoid excessive memory allocation in case of truncated
* file.
* * calls regular TIFFReadEncodedStrip() if *buf != NULL
*/
@@ -1019,7 +1019,7 @@ TIFFReadEncodedTile(TIFF* tif, uint32 tile, void* buf, tmsize_t size)
/* Variant of TIFFReadTile() that does
* * if *buf == NULL, *buf = _TIFFmalloc(bufsizetoalloc) only after TIFFFillTile() has
- * suceeded. This avoid excessive memory allocation in case of truncated
+ * succeeded. This avoid excessive memory allocation in case of truncated
* file.
* * calls regular TIFFReadEncodedTile() if *buf != NULL
*/
@@ -1038,7 +1038,7 @@ _TIFFReadTileAndAllocBuffer(TIFF* tif,
/* Variant of TIFFReadEncodedTile() that does
* * if *buf == NULL, *buf = _TIFFmalloc(bufsizetoalloc) only after TIFFFillTile() has
- * suceeded. This avoid excessive memory allocation in case of truncated
+ * succeeded. This avoid excessive memory allocation in case of truncated
* file.
* * calls regular TIFFReadEncodedTile() if *buf != NULL
*/