Open GoogleCodeExporter opened 9 years ago
Sorry it is v1.3 not 1.2
Original comment by tgoodma...@gmail.com
on 24 Dec 2008 at 5:50
I had the same issue. There's a bug in in the class TLSEngine. They are not
taking
into account that the third parameter that the function ByteArray.readBytes()
takes,
that is "length", has a special behavior for the value zero. Adobe's
documentation
satates "The default value of 0 causes all available data to be read.".
To fix it you will need to change the file com/hurlant/crypto/tls/TLSEngine.as
at
line 429.
From this:
rec.readBytes(session, 0, session_length);
To this:
if(session_length > 0){
rec.readBytes(session, 0, session_length);
}
Original comment by fedebase...@gmail.com
on 16 Mar 2010 at 6:34
Original issue reported on code.google.com by
tgoodma...@gmail.com
on 24 Dec 2008 at 5:48