<div dir="ltr">Hello. I tried live555ProxyServer.cpp example and found that if:<br>1) we start program with -V option<br>2) there are active proxy streams (not clients, but just get descriptions from rtsp streams);<br>3) we EXIT from event loop and delete server with <b>Medium::close()</b><br><br>then it will crash due to access to the deleted object <b>fProxyRTSPClient </b>in <b>ProxyServerMediaSession</b>. There is the problem that after destruction of <b>ProxyServerMediaSession </b>there is access to <br><br><b>char const* ProxyServerMediaSession::url() const </b><br><br>method with -V option, and <b>fProxyRTSPClient </b>is destroyed but not NULL.<br><br>So we just need to add <br><br><b>  fProxyRTSPClient = NULL;</b><br><br>on line 133 (just after  <b>Medium::close(fProxyRTSPClient);</b> in <b>~ProxyServerMediaSession</b>).</div>