mirror of
https://github.com/reactos/reactos.git
synced 2025-01-10 16:18:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
15 lines
No EOL
415 B
Diff
15 lines
No EOL
415 B
Diff
Index: tif_open.c
|
|
===================================================================
|
|
--- tif_open.c (revision 48037)
|
|
+++ tif_open.c (working copy)
|
|
@@ -516,6 +516,9 @@
|
|
TIFFSetClientdata(TIFF* tif, thandle_t newvalue)
|
|
{
|
|
thandle_t m = tif->tif_clientdata;
|
|
+#ifdef USE_WIN32_FILEIO
|
|
+ newvalue = (thandle_t) _get_osfhandle(newvalue);
|
|
+#endif /* USE_WIN32_FILEIO */
|
|
tif->tif_clientdata = newvalue;
|
|
return m;
|
|
}
|
|
|