]> saetta.ns0.it Git - zakaudit/libzakaudit/commitdiff
Bugfix for INSERT INTO from SELECT.
authorAndrea Zagli <azagli@libero.it>
Sat, 1 Oct 2011 11:37:19 +0000 (13:37 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 1 Oct 2011 11:37:19 +0000 (13:37 +0200)
It seems that libgda can't parse values.

src/audit.c

index e485e3b48601cc8e51b7b632b3c57ca5b6e2e386..4aafe0c9070786cda1b1c0362f11c0be32f5008f 100644 (file)
@@ -1049,7 +1049,16 @@ zak_audit_action_from_gdastatement (ZakAudit *zak_audit,
 
                                        /* TODO reduntant */
                                        fields = sql->fields_list;
-                                       values = ((GSList *)sql->values_list)->data;
+                                       
+                                       if (sql->values_list == NULL)
+                                               {
+                                                       /* may be it is an INSERT with SELECT */
+                                                       values = NULL;
+                                               }
+                                       else
+                                               {
+                                                       values = ((GSList *)sql->values_list)->data;
+                                               }
 
                                        while (fields != NULL && values != NULL)
                                                {