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
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ build_lifetimes(items)
|
||||||
* item; yet, there may be a register message for it...
|
* item; yet, there may be a register message for it...
|
||||||
*/
|
*/
|
||||||
if(item != (item_p) 0) {
|
if(item != (item_p) 0) {
|
||||||
item->it_lastlive = now;
|
item->it_lastlive = last_code + 1;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (is_deadmsg(l)) {
|
if (is_deadmsg(l)) {
|
||||||
|
|
Loading…
Reference in a new issue