Pere Negre

Results 11 comments of Pere Negre

To clarify the issue, this is the "readline" function (in HTTPConnection.cpp): void HTTPConnection::readLine(int lengthLimit) { while(_bufferProcessed < _bufferUnusedIdx) { char newChar = _receiveBuffer[_bufferProcessed]; if ( newChar == '\r') { //...

I think I've identified the problem more accurately. The "infinite loop" problem happens when "_bufferProcessed=511" and "_bufferUnused=512". You don't need chrome to reproduce the problem. Attached to this file there...

More information: this is the modified function i've used to identify the bug: void HTTPConnection::readLine(int lengthLimit) { HTTPS_LOGW("bufferProcessed: %d", _bufferProcessed); HTTPS_LOGW("bufferUnused: %d", _bufferUnusedIdx); while(_bufferProcessed < _bufferUnusedIdx) { char newChar =...

Thanks! I hope the maintainers will fix it.

Hello! Can you provide more data? I need to know where the program fails to be able to work on this issue... On Wed, Sep 11, 2013 at 10:51 AM,...

For testing purposes, make sure that you run "python-whiteboard-test" from the top directory. Run the script from the console and paste the error message in your post. On Thu, Sep...

Hi. It's not easy to diagnose the problem, I can't replicate it with my computer. Are you a programmer? If you know some python, you can insert some print statements...

Mmm... maybe the problem is on the client libraries. On Fri, Sep 13, 2013 at 8:10 AM, shamppa [email protected] wrote: > Okay, now I founded this kind error: > blutooth.btcommon.BluetoothError:...

Thanks! Patch applied. Please check the new version on github. On Wed, Nov 27, 2013 at 10:26 PM, primes2h [email protected] wrote: > Hello, > if you try to connect a...

Hi Sergio! Thanks for the patch. It's already updated on github. Thanks. Sorry for the delay. I've had a busy day! On Thu, Nov 28, 2013 at 5:21 PM, Sergio...