1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +00:00

gis: gdal: Fixed Driver and DataSource bug reported by David Hancock in django-users and reproduced by tlp.

git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@7003 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Justin Bronn 2008-01-06 22:20:39 +00:00
parent 1d5e689af2
commit 298074d5b8
3 changed files with 6 additions and 5 deletions

View File

@ -67,8 +67,7 @@ class DataSource(object):
# Registering all the drivers, this needs to be done
# _before_ we try to open up a data source.
if not get_driver_count() and not register_all():
raise OGRException('Could not register all the OGR data source drivers!')
if not get_driver_count(): register_all()
if isinstance(ds_input, basestring):
# The data source driver is a void pointer.

View File

@ -56,9 +56,8 @@ class Driver(object):
def _register(self):
"Attempts to register all the data source drivers."
# Only register all if the driver count is 0 (or else all drivers
# will be registered over and over again)
if not self.driver_count and not register_all():
raise OGRException('Could not register all the OGR data source drivers!')
# will be registered over and over again)
if not self.driver_count: register_all()
# Driver properties
@property

View File

@ -103,6 +103,9 @@ def void_output(func, argtypes, errcheck=True):
# return void, rather than a status code.
func.restype = c_int
func.errcheck = check_errcode
else:
func.restype = None
return func
def voidptr_output(func, argtypes):