]> saetta.ns0.it Git - libgdaex/commitdiff
Bugfix for freeing memory.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 29 Nov 2011 12:47:38 +0000 (13:47 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 29 Nov 2011 12:47:38 +0000 (13:47 +0100)
Added more control and verbosity on transaction opening.

src/gdaex.c

index d40f5e3b3209340a9ab19aeb8a4c13af64915fd3..cd9de2ec8c23b565d1eef397872fbdc1e4ec44bb 100644 (file)
@@ -168,7 +168,6 @@ static GdaEx
                }
 
        g_free (moddir);
-       g_free (p);
 
 #else
 
@@ -2412,14 +2411,24 @@ gdaex_begin (GdaEx *gdaex)
                                                GDA_TRANSACTION_ISOLATION_SERIALIZABLE,
                                                &error);
 
-       if (error != NULL)
+       if (!ret || error != NULL)
                {
                        g_warning (_("Error opening transaction: %s\n"),
                                   error->message != NULL ? error->message : _("no details"));
                }
        else
                {
-                       if (priv->debug > 0)
+                       /* check transaction status */
+                       GdaTransactionStatus *tstatus;
+
+                       tstatus = gda_connection_get_transaction_status (priv->gda_conn);
+                       if (tstatus == NULL
+                           || tstatus->state == GDA_TRANSACTION_STATUS_STATE_FAILED)
+                               {
+                                       g_warning (_("No transaction opened"));
+                                       ret = FALSE;
+                               }
+                       else if (priv->debug > 0)
                                {
                                        g_message (_("Transaction opened."));
                                }
@@ -2589,18 +2598,15 @@ gdaex_commit (GdaEx *gdaex)
                        error = NULL;
                        ret = gda_connection_commit_transaction (priv->gda_conn, "gdaex", &error);
 
-                       if (error != NULL)
+                       if (!ret || error != NULL)
                                {
                                        g_warning (_("Error committing transaction: %s"),
                                                   error->message != NULL ? error->message : _("no details"));
                                        ret = FALSE;
                                }
-                       else
+                       else if (priv->debug > 0)
                                {
-                                       if (priv->debug > 0)
-                                               {
-                                                       g_message (_("Transaction committed."));
-                                               }
+                                       g_message (_("Transaction committed."));
                                }
                }