* libtiff/tif_aux.c, tif_getimage.c, tif_read.c: typo fixes in
comments.
This commit is contained in:
parent
238b103ba5
commit
5426f499e8
@ -1,3 +1,8 @@
|
||||
2017-11-17 Even Rouault <even.rouault at spatialys.com>
|
||||
|
||||
* libtiff/tif_aux.c, tif_getimage.c, tif_read.c: typo fixes in
|
||||
comments.
|
||||
|
||||
2017-11-02 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
|
||||
* test/Makefile.am: Add some tests for tiff2bw.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: tif_aux.c,v 1.30 2017-09-07 14:02:52 erouault Exp $ */
|
||||
/* $Id: tif_aux.c,v 1.31 2017-11-17 20:21:00 erouault Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991-1997 Sam Leffler
|
||||
@ -361,7 +361,7 @@ _TIFFUInt64ToDouble(uint64 ui64)
|
||||
|
||||
int _TIFFSeekOK(TIFF* tif, toff_t off)
|
||||
{
|
||||
/* Huge offsets, expecially -1 / UINT64_MAX, can cause issues */
|
||||
/* Huge offsets, especially -1 / UINT64_MAX, can cause issues */
|
||||
/* See http://bugzilla.maptools.org/show_bug.cgi?id=2726 */
|
||||
return off <= (~(uint64)0)/2 && TIFFSeekFile(tif,off,SEEK_SET)==off;
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: tif_getimage.c,v 1.113 2017-10-23 11:34:26 erouault Exp $ */
|
||||
/* $Id: tif_getimage.c,v 1.114 2017-11-17 20:21:00 erouault Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1991-1997 Sam Leffler
|
||||
@ -138,7 +138,7 @@ TIFFRGBAImageOK(TIFF* tif, char emsg[1024])
|
||||
/*
|
||||
* TODO: if at all meaningful and useful, make more complete
|
||||
* support check here, or better still, refactor to let supporting
|
||||
* code decide whether there is support and what meaningfull
|
||||
* code decide whether there is support and what meaningful
|
||||
* error to return
|
||||
*/
|
||||
break;
|
||||
@ -416,7 +416,7 @@ TIFFRGBAImageBegin(TIFFRGBAImage* img, TIFF* tif, int stop, char emsg[1024])
|
||||
/*
|
||||
* TODO: if at all meaningful and useful, make more complete
|
||||
* support check here, or better still, refactor to let supporting
|
||||
* code decide whether there is support and what meaningfull
|
||||
* code decide whether there is support and what meaningful
|
||||
* error to return
|
||||
*/
|
||||
break;
|
||||
|
@ -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
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user