とりあえず落ちなくはなった

id:hetappi:20050812の落ちる際のメッセージは

access denied.address = 0x00000024 Process PROCESS.BIN killed  eip=0xA000301D

で、これで回避可能な模様。

[core/process_server/main.cpp]
137: //    for (option = list.next; option; option = option->next)
138: //    {
139: //        delete option;
140: //    }
141:     CommandOption* next;
142:     for (option = list.next; option; option = next)
143:     {
144:         next = option->next;
145:         delete option;
146:     }