From 5043316a020f2fc8f9ae28b908a982d68d1f5bf7 Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 9 Apr 2013 15:58:54 +0000 Subject: The 1.9.2 release is a bug fix release. * Fix infinite GDALOpen recursion with some VRTs (4835) * Avoid destroying existing overviews (.aux/.rrd) (4831) * Support recognising NaN better in CPLStrtod() (4799) * Fix windows declaration for CPLGetErrorHandlerUserData() (4755) * Fix compilation with Gentoo modified zlib 1.2.6 (4723) * Look for libgeotiff headers in /usr/include/libgeotiff too (4706) * Improve warning handling in CPLClearRecodeStubWarningFlags() (4650) * Fix Solaris compilation bug (4705) * MorphFromESRI(): compare SPHEROID/PRIMEM parms, not names (4673) * Avoid iffy casting of OGRWkbGeometryType to int (4847) * Fix thread safety issue with CPLOpenShared() --- .../gdal-lib/patches/patch-frmts_netcdf_netcdfdataset.cpp | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 geography/gdal-lib/patches/patch-frmts_netcdf_netcdfdataset.cpp (limited to 'geography/gdal-lib/patches') diff --git a/geography/gdal-lib/patches/patch-frmts_netcdf_netcdfdataset.cpp b/geography/gdal-lib/patches/patch-frmts_netcdf_netcdfdataset.cpp deleted file mode 100644 index 20d79da7831..00000000000 --- a/geography/gdal-lib/patches/patch-frmts_netcdf_netcdfdataset.cpp +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-frmts_netcdf_netcdfdataset.cpp,v 1.1 2012/05/04 13:27:23 hans Exp $ - ---- frmts/netcdf/netcdfdataset.cpp.orig 2012-01-04 08:03:37.000000000 +0100 -+++ frmts/netcdf/netcdfdataset.cpp 2012-05-04 15:08:15.080833521 +0200 -@@ -962,7 +962,7 @@ void netCDFRasterBand::CheckValidData ( - /* check for nodata and nan */ - if ( CPLIsEqual( (double) ((T *)pImage)[i], dfNoDataValue ) ) - continue; -- if( bCheckIsNan && CPLIsNan( ( (T *) pImage)[i] ) ) { -+ if( bCheckIsNan && CPLIsNan( (double) ( (T *) pImage)[i] ) ) { - ( (T *)pImage )[i] = (T)dfNoDataValue; - continue; - } -- cgit v1.2.3