[1.10.x] Fixed #27479 -- Fixed GDALClose prototype

Backport of faf8a253d3 from master.
This commit is contained in:
Sergey Fedoseev 2016-11-12 21:25:14 +06:00 committed by Claude Paroz
parent 92ce31fd8c
commit eff483ff32
2 changed files with 4 additions and 4 deletions

View File

@ -30,10 +30,7 @@ get_driver_description = const_string_output(std_call('GDALGetDescription'), [c_
# Raster Data Source Routines
create_ds = voidptr_output(std_call('GDALCreate'), [c_void_p, c_char_p, c_int, c_int, c_int, c_int, c_void_p])
open_ds = voidptr_output(std_call('GDALOpen'), [c_char_p, c_int])
if GDAL_VERSION >= (2, 0):
close_ds = voidptr_output(std_call('GDALClose'), [c_void_p])
else:
close_ds = void_output(std_call('GDALClose'), [c_void_p])
close_ds = void_output(std_call('GDALClose'), [c_void_p], errcheck=False)
flush_ds = int_output(std_call('GDALFlushCache'), [c_void_p])
copy_ds = voidptr_output(
std_call('GDALCreateCopy'),

View File

@ -20,3 +20,6 @@ Bugfixes
* Fixed query expression date subtraction accuracy on PostgreSQL for
differences large an a month (:ticket:`27856`).
* Fixed a ``GDALException`` raised by ``GDALClose`` on GDAL >= 2.0
(:ticket:`27479`).