]> saetta.ns0.it Git - libgdaex/commitdiff
Bugfixes. 0.3.0
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 7 Jun 2011 10:13:35 +0000 (12:13 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 7 Jun 2011 10:13:35 +0000 (12:13 +0200)
src/Makefile.am
src/gdaex.c

index f0538694b2641fa6a8fade887782e26b1925203b..167a7ca4c0126134f9ab67919a4dc46e28f20ab0 100644 (file)
@@ -12,9 +12,9 @@ libgdaex_la_SOURCES = gdaex.c \
 
 libgdaex_la_LDFLAGS = -no-undefined
 
-include_HEADERS = libgdaex.h \
-                  gdaex.h \
-                  grid.h \
-                  gridcolumn.h
+libgdaex_include_HEADERS = libgdaex.h \
+                           gdaex.h \
+                           grid.h \
+                           gridcolumn.h
 
 libgdaex_includedir = $(includedir)/libgdaex
index e70188d2c13bb126e9226451c0a1ea0f174026a6..70529c7f9a4277a4ce0318110e67c28ddb8d4189 100644 (file)
@@ -658,8 +658,6 @@ GdaDataModel
                                }
                }
 
-       g_object_unref (stmt);
-
        return dm;
 }
 
@@ -2184,8 +2182,6 @@ gdaex_execute (GdaEx *gdaex, const gchar *sql)
        error = NULL;
        nrecs = gda_connection_statement_execute_non_select (priv->gda_conn, stmt, NULL, NULL, &error);
 
-       g_object_unref (stmt);
-
        if (error != NULL)
                {
                        g_warning ("Error executing command query: %s\n%s",
@@ -2202,6 +2198,8 @@ gdaex_execute (GdaEx *gdaex, const gchar *sql)
 
        g_signal_emit (gdaex, klass->after_execute_signal_id, 0, stmt);
 
+       g_object_unref (stmt);
+
        return nrecs;
 }