mirror of https://github.com/django/django.git
[1.10.x] Fixed #27479 -- Fixed GDALClose prototype
Backport of faf8a253d3
from master.
This commit is contained in:
parent
92ce31fd8c
commit
eff483ff32
|
@ -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'),
|
||||
|
|
|
@ -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`).
|
||||
|
|
Loading…
Reference in New Issue