X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fhomebank;a=blobdiff_plain;f=src%2Fhb-transaction.c;h=f7acc90f2791485c91eaf4a7dbd54ddff765b963;hp=0368946f9fbb4267bb383d7ace7200f70f03a6a2;hb=5499ff44ef50b751b58f27fd13594f7dd4f959b7;hpb=a6c6b0df5492c2160ed97e3a376bdb2fe7c5ebc4 diff --git a/src/hb-transaction.c b/src/hb-transaction.c index 0368946..f7acc90 100644 --- a/src/hb-transaction.c +++ b/src/hb-transaction.c @@ -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 {