* libtiff/tif_unix.c: fix compilation with MSVC (fix by Jeff McKenna)
This commit is contained in:
parent
a2b4dfc83a
commit
39113ade50
@ -1,3 +1,7 @@
|
|||||||
|
2015-06-16 Even Rouault <even.rouault at spatialys.com>
|
||||||
|
|
||||||
|
* libtiff/tif_unix.c: fix compilation with MSVC (fix by Jeff McKenna)
|
||||||
|
|
||||||
2015-06-14 Lee Howard <faxguy@howardsilvan.com>
|
2015-06-14 Lee Howard <faxguy@howardsilvan.com>
|
||||||
|
|
||||||
* libtiff/tif_unix.c: contribution from Vadim Zeitlin on
|
* libtiff/tif_unix.c: contribution from Vadim Zeitlin on
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: tif_unix.c,v 1.25 2015-06-14 23:13:40 faxguy Exp $ */
|
/* $Id: tif_unix.c,v 1.26 2015-06-16 15:33:17 erouault Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1988-1997 Sam Leffler
|
* Copyright (c) 1988-1997 Sam Leffler
|
||||||
@ -114,9 +114,9 @@ _tiffCloseProc(thandle_t fd)
|
|||||||
static uint64
|
static uint64
|
||||||
_tiffSizeProc(thandle_t fd)
|
_tiffSizeProc(thandle_t fd)
|
||||||
{
|
{
|
||||||
|
struct stat sb;
|
||||||
fd_as_handle_union_t fdh;
|
fd_as_handle_union_t fdh;
|
||||||
fdh.h = fd;
|
fdh.h = fd;
|
||||||
struct stat sb;
|
|
||||||
if (fstat(fdh.fd,&sb)<0)
|
if (fstat(fdh.fd,&sb)<0)
|
||||||
return(0);
|
return(0);
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user