Custom Query (44 matches)
Results (7 - 9 of 44)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#122 | fixed | Support application/news-groupinfo entity in controlchan | ||
Description |
controlchan should be able to properly decode newgroup control articles which contain an application/news-groupinfo entity. It is a new structure for such articles described in USEPRO. |
|||
#121 | fixed | innfeed crashes after a failed assertion | ||
Description |
A long-standing issue in innfeed which sometimes crashes with: 2009-01-04 19:39:50 innfeed: assertion -- cxn != NULL -- failed in file connection.c line 1171 2009-01-04 20:59:43 innfeed: assertion -- cxn != NULL -- failed in file connection.c line 1171 It comes from cxnCheckstate() in connection.c, called only once in host.c. We should check whether the connection is still here. It may not have been affected during a for loop. For instance, we have: for (idx = 0 ; idx < host->maxConnections ; idx++) if (!host->cxnActive [idx] && !host->cxnSleeping [idx] && (cxn = host->connections[idx]) != host->notThisCxn) We could have a case where all the connections to a host are inactive and sleeping. Therefore, cxn will still be NULL and passed to cxnCheckstate(). Suggested patch: Index: host.c =================================================================== --- host.c (révision 8263) +++ host.c (copie de travail) @@ -1783,7 +1783,7 @@ delArticle (extraRef) ; remArticle (article,&host->processed,&host->processedTail) ; - if (!cxnCheckstate (cxn)) + if (cxn == NULL || !cxnCheckstate (cxn)) { host->artsToTape++ ; host->gArtsToTape++ ; |
|||
#111 | fixed | Advertise extensions to the LIST command | ||
Description |
INN recognizes LIST keywords not mentioned in CAPABILITIES. They should be documented in an Internet-Draft.
Available references:
|