# HG changeset patch # User truelight # Date 1103473605 0 # Node ID edd37e6da51fe13b05d54ebb03a36733bdc26d77 # Parent f420fa9bd5215733ef310ffea0606be72948c47a (svn r1175) -Fix: [ 1086375 ] Backup-order-list was not closed with an OT_NOTHING, resulting in order-lists mixing together (maybe tnx to Darkvater, not sure though..) diff -r f420fa9bd521 -r edd37e6da51f order_cmd.c --- a/order_cmd.c Sun Dec 19 15:14:55 2004 +0000 +++ b/order_cmd.c Sun Dec 19 16:26:45 2004 +0000 @@ -327,6 +327,8 @@ do { *os++ = *sched++; } while (sched->type != OT_NOTHING); + /* Make sure the last item is OT_NOTHING */ + os->type = OT_NOTHING; } }