bug fixed: lifetime of an item was too short; it should also cover
any live/dead message prior to its initial live-message.
This commit is contained in:
parent
241a7de970
commit
66ab97d2b0
|
@ -57,7 +57,7 @@ build_lifetimes(items)
|
|||
* item; yet, there may be a register message for it...
|
||||
*/
|
||||
if(item != (item_p) 0) {
|
||||
item->it_lastlive = now;
|
||||
item->it_lastlive = last_code + 1;
|
||||
}
|
||||
} else {
|
||||
if (is_deadmsg(l)) {
|
||||
|
|
Loading…
Reference in a new issue