-
Notifications
You must be signed in to change notification settings - Fork 536
crashing when connect and disconnect button is clicked for many times even with some timegap #64
Comments
I was debugging this yesterday, the issue is that the socket loop runs |
Thanks for the reply. Can I know which committed version code that you are working on? Because in recent version code, I didn't find any line related to m_ending is true. But in the old version , I have seen this line. |
m_ending is set in RTMPSession::~RTMPSession() I think that changing while((m_streamSession->status() & kStreamStatusReadBufferHasBytes) && !stop2) to while(!m_ending && m_streamSession && (m_streamSession->status() & kStreamStatusReadBufferHasBytes) && !stop2) in line 335 Should fix this issue temporary (but is not a proper fix) |
Hi, Thanks for the response. I have tested with the modification in line 335. But still the problem is there. Still the crash is occurring by repeatedly pressing connect and disconnect buttons. |
@bhagyalakshmikad @skmp Hi,i am having same problem . the crash is occurring by repeatedly pressing disconnect button. Did you find any solution ? Please tell me |
Hey! Probably I fixed this issue #348 |
@artFintch Hi, I am using videocore version 0.3.2.(red5 server). Working fine but when i was calling [vcsimplesession endrtmpsession], then app is freezing some time. |
Hi,
crash occurs at if((m_streamSession->status() & kStreamStatusWriteBufferHasSpace) && m_streamOutRemainder.size()) line in RTMPSession.cpp.
And also waiting for long time after connect button is clicked and if disconnecting
crash occurs at if((m_streamSession->status() & kStreamStatusWriteBufferHasSpace) && m_streamOutRemainder.size()) line.
Please suggest me with the solution to resolve this.
Thanks in advance.
The text was updated successfully, but these errors were encountered: