* libtiff/tif_unix.c: fix compilation with MSVC (fix by Jeff McKenna)

This commit is contained in:
Even Rouault 2015-06-16 15:33:17 +00:00
parent a2b4dfc83a
commit 39113ade50
2 changed files with 6 additions and 2 deletions

View File

@ -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>
* libtiff/tif_unix.c: contribution from Vadim Zeitlin on

View File

@ -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
@ -114,9 +114,9 @@ _tiffCloseProc(thandle_t fd)
static uint64
_tiffSizeProc(thandle_t fd)
{
struct stat sb;
fd_as_handle_union_t fdh;
fdh.h = fd;
struct stat sb;
if (fstat(fdh.fd,&sb)<0)
return(0);
else