<div dir="ltr"><div><div><div>Hello,</div><div><br></div><div>I found a crash that can be caused in some circonstance.</div><div><br></div><div>I use a RTSPClient reading a video stream from Dahua camera.</div><div>I selected a too small MediaSink buffer to get frame, so i stopped the stream when receiving truncated bytes. <br></div><div>But
during 30 seconds (delay for my activity check handler), the RTSP
stream continues to read packets from the camera and create
H265BufferedPacket.</div><div>After 30 seconds livemedia shutdown the stream and released the packet.</div><div><br></div><div>But
due to the recursive deallocation of BufferedPacket, on Windows I
received a crash on the stack size after trying to delete more than 5700
packets.</div><div><br></div><div>I can probably fix thing on my side but replacing :</div><div><br></div><div>BufferedPacket::~BufferedPacket() {<br> delete fNextPacket;<br> delete[] fBuf;<br>}<br></div><div><br></div><div>by :</div><div><br></div><div>BufferedPacket::~BufferedPacket() {<br> BufferedPacket *nextPacket = fNextPacket;<br> while (nextPacket != nullptr) {<br> BufferedPacket *tmpPacket = nextPacket;<br> nextPacket = tmpPacket->fNextPacket;<br> tmpPacket->fNextPacket = nullptr;<br> delete tmpPacket;<br> }<br> delete[] fBuf;<br>}</div><div><br></div><div>Fix the crash for me.</div></div><br></div><div><br clear="all"></div><div><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr" style="margin-left:0pt" align="left"><table style="border:none;border-collapse:collapse"><colgroup><col width="494"></colgroup><tbody><tr style="height:0pt"><td style="vertical-align:top;padding:5pt 5pt 5pt 5pt;overflow:hidden"><p dir="ltr" style="line-height:1.2;margin-top:0pt;margin-bottom:0pt"><span style="font-size:11pt;font-family:Roboto,sans-serif;color:#434343;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap">Eric BEUQUE</span><span style="font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap"> - </span><span style="font-size:10pt;font-family:Roboto,sans-serif;color:#ea5f0e;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap">Software architect / developer</span></p></td></tr><tr style="height:0pt"><td style="border-bottom:solid #ea5f0e 1pt;vertical-align:top;padding:5pt 5pt 5pt 5pt;overflow:hidden"><p dir="ltr" style="line-height:1.2;margin-top:0pt;margin-bottom:0pt"><span style="font-size:10pt;font-family:Roboto,sans-serif;color:#434343;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap">T. 03 81 50 51 50 | <a href="http://www.jet1oeil.com" target="_blank">www.jet1oeil.com</a></span></p><p dir="ltr" style="line-height:1.2;margin-top:0pt;margin-bottom:0pt"><span style="font-size:10pt;font-family:Roboto,sans-serif;color:#434343;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap">5 rue Victor Considérant, Parc d’Activités de l’Echange 25770 Chemaudin et Vaux</span></p></td></tr><tr style="height:0pt"><td style="border-top:solid #ea5f0e 1pt;vertical-align:top;padding:5pt 5pt 5pt 5pt;overflow:hidden"><p dir="ltr" style="line-height:1.2;margin-top:0pt;margin-bottom:0pt"><span style="font-size:11pt;font-family:Arial;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap"><span style="border:none;display:inline-block;overflow:hidden;width:378px;height:68px"><img src="https://lh6.googleusercontent.com/leuqUSeAdRkOkKTDaJZKkpuxDMv3a56-lgnUv9mOdxNd2IBoNdSXmryLF_CMEEs3oI-sPl32v_K91WcsZ-K0DQxoicuy_5jI1bRqC6OuHkTra6OVrPSPAy05MSvj4NeFiF1r5Mn0Jufe2FcxOz3bOw9O6prWvcvOFCfUZ2nzh9PHtGu8GrpVTpuO" style="margin-left:0px;margin-top:0px" width="378" height="68"></span></span></p></td></tr></tbody></table></div></div></div></div></div></div></div></div></div></div></div></div></div></div>