]> Dogcows Code - chaz/homebank/blobdiff - src/hb-transaction.c
import homebank-5.2.6
[chaz/homebank] / src / hb-transaction.c
index 0368946f9fbb4267bb383d7ace7200f70f03a6a2..f7acc90f2791485c91eaf4a7dbd54ddff765b963 100644 (file)
@@ -652,7 +652,12 @@ gint count;
                        result = ui_dialog_transaction_xfer_select_child(parent, ope, matchlist, &child);
                        if( result == GTK_RESPONSE_ACCEPT )
                        {
-                               transaction_xfer_change_to_child(ope, child);
+                               //#1827193 child can be null...
+                               DB( g_print(" child %p\n", child) );
+                               if( child != NULL )
+                                       transaction_xfer_change_to_child(ope, child);
+                               else
+                                       transaction_xfer_create_child(ope);
                        }
                        else //GTK_RESPONSE_CANCEL
                        {
This page took 0.020209 seconds and 4 git commands to generate.