[libgda] sqlite: fixed set internal data for connection
- From: Daniel Espinosa Ortiz <despinosa src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgda] sqlite: fixed set internal data for connection
- Date: Mon, 8 Oct 2018 19:48:33 +0000 (UTC)
commit 009bdb17e9252019505d178ef6b34f3172ee519f
Author: Daniel Espinosa <esodan gmail com>
Date: Fri Oct 5 16:13:43 2018 -0500
sqlite: fixed set internal data for connection
libgda/sqlite/gda-sqlite-provider.c | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
---
diff --git a/libgda/sqlite/gda-sqlite-provider.c b/libgda/sqlite/gda-sqlite-provider.c
index d5c1cb05c..3285b4149 100644
--- a/libgda/sqlite/gda-sqlite-provider.c
+++ b/libgda/sqlite/gda-sqlite-provider.c
@@ -1230,7 +1230,7 @@ gda_sqlite_provider_prepare_connection (GdaServerProvider *provider, GdaConnecti
gda_connection_add_event_string (cnc, errmsg);
SQLITE3_CALL (sqlite3_free) (errmsg);
gda_sqlite_free_cnc_data (cdata);
- gda_connection_internal_set_provider_data (cnc, NULL, (GDestroyNotify)
gda_sqlite_free_cnc_data);
+ gda_connection_internal_set_provider_data (cnc, NULL, NULL);
return FALSE;
}
}
@@ -1253,8 +1253,7 @@ gda_sqlite_provider_prepare_connection (GdaServerProvider *provider, GdaConnecti
if (res != SQLITE_OK) {
if (with_fk) {
gda_sqlite_free_cnc_data (cdata);
- gda_connection_internal_set_provider_data (cnc, NULL,
- (GDestroyNotify) gda_sqlite_free_cnc_data);
+ gda_connection_internal_set_provider_data (cnc, NULL, NULL);
return FALSE;
}
}
@@ -1265,8 +1264,7 @@ gda_sqlite_provider_prepare_connection (GdaServerProvider *provider, GdaConnecti
if (res != SQLITE_DONE) {
if (with_fk) {
gda_sqlite_free_cnc_data (cdata);
- gda_connection_internal_set_provider_data (cnc, NULL,
- (GDestroyNotify) gda_sqlite_free_cnc_data);
+ gda_connection_internal_set_provider_data (cnc, NULL, NULL);
return FALSE;
}
}
@@ -1293,7 +1291,7 @@ gda_sqlite_provider_prepare_connection (GdaServerProvider *provider, GdaConnecti
gda_connection_add_event_string (cnc, _("Could not register function '%s'"),
func->name);
gda_sqlite_free_cnc_data (cdata);
- gda_connection_internal_set_provider_data (cnc, NULL, (GDestroyNotify)
gda_sqlite_free_cnc_data);
+ gda_connection_internal_set_provider_data (cnc, NULL, NULL);
return FALSE;
}
}
@@ -1312,7 +1310,7 @@ gda_sqlite_provider_prepare_connection (GdaServerProvider *provider, GdaConnecti
gda_connection_add_event_string (cnc, _("Could not register function '%s'"),
func->name);
gda_sqlite_free_cnc_data (cdata);
- gda_connection_internal_set_provider_data (cnc, NULL, (GDestroyNotify)
gda_sqlite_free_cnc_data);
+ gda_connection_internal_set_provider_data (cnc, NULL, NULL);
return FALSE;
}
}
@@ -1330,7 +1328,7 @@ gda_sqlite_provider_prepare_connection (GdaServerProvider *provider, GdaConnecti
_("Could not define the %s collation"),
func->name);
gda_sqlite_free_cnc_data (cdata);
- gda_connection_internal_set_provider_data (cnc, NULL, (GDestroyNotify)
gda_sqlite_free_cnc_data);
+ gda_connection_internal_set_provider_data (cnc, NULL, NULL);
return FALSE;
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]