<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Thanks for the report.  Yes, there is a bug in that code, although it wasn't quite what you thought.  Try replacing those two "for" loops with the following:<div><br></div><div><div>    for (StreamReplica* r1 = fReplicasAwaitingCurrentFrame; r1 != NULL;) {</div><div>      if (r1 == replicaBeingDeactivated) {</div><div><span class="Apple-tab-span" style="white-space:pre">  </span>if (r1 == fReplicasAwaitingCurrentFrame) fReplicasAwaitingCurrentFrame = r1->fNext;</div><div>        r1 = r1->fNext;</div><div>        replicaBeingDeactivated->fNext = NULL;</div><div><span class="Apple-tab-span" style="white-space:pre">      </span>break;</div><div>      } else {</div><div>        r1 = r1->fNext;</div><div>      }</div><div>    }</div><div>    for (StreamReplica* r2 = fReplicasAwaitingNextFrame; r2 != NULL;) {</div><div>      if (r2 == replicaBeingDeactivated) {</div><div>        if (r2 == fReplicasAwaitingNextFrame) fReplicasAwaitingNextFrame = r2->fNext;</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>r2 = r2->fNext;</div><div><span class="Apple-tab-span" style="white-space:pre">   </span>replicaBeingDeactivated->fNext = NULL;</div><div>        break;</div><div>      } else {</div><div>        r2 = r2->fNext;</div><div>      }</div><div>    }</div><div>  }</div></div><div><br></div><div>If you find any problem with this, then please let us know ASAP.  Otherwise I'll release a new version of the code with this change.</div><br><br><div apple-content-edited="true">
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">Ross Finlayson<br>Live Networks, Inc.<br><a href="http://www.live555.com/">http://www.live555.com/</a></span></span>
</div>
<br></body></html>