Re: [Live-devel] check RTSPClient::handleResponseBytes

2015-01-18 Thread Ross Finlayson
Yes, there is a bug in the code (though it would only ever be a problem, I think, if the client received a completely empty RTSP response). Nevertheless, I have installed a new version (2015.01.19) of the code that fixes this. Thanks for the report. Ross Finlayson Live Networks, Inc. http://ww

Re: [Live-devel] check RTSPClient::handleResponseBytes

2015-01-18 Thread ChaseopIm
Sorry. Line numbers of RTSPClient::handleResponseBytes are 1467 ~ 1751. 1547 ~ 1549 are numbers that I think buggy code line. 1547 ~ 1579 code is lineStart = nextLineStart; nextLineStart = getLine(lineStart); } while (lineStart[0] == '\0'); // skip over any blank

Re: [Live-devel] check RTSPClient::handleResponseBytes

2015-01-18 Thread Ross Finlayson
> I think there is some buggy code in RTSPClient::handleResponseBytes > method(code line is 1547 ~ 1549). No, those line numbers are incorrect; you are probably using an old version of the code. Only the latest version of the code is supported: http://live555.com/liveMedia/faq.html#lates

[Live-devel] check RTSPClient::handleResponseBytes

2015-01-18 Thread ChaseopIm
Hi. I think there is some buggy code in RTSPClient::handleResponseBytes method(code line is 1547 ~ 1549). In code, lineStart = nextLineStart; and nextLineStart is return value of getLine. getLine function can return NULL. So nextLineStart and lineStart could be also null. When lineStart is