Hello,

I  always  "loved"  the  Pascal  way  of  obfuscating  code with those
complicated  mix  of @ pchar ^ and other funny notation as soon as you
need to play with pointers and direct data memory access...

>> The bug is in OverbyteIcsWSockBuf.pas. In function TBuffer.Write, you'll
>> find a line:
>> Move(Data^, (PChar(Buf) + WrCount)^, Copied);
>> which must be replaced by this one:
>> Move((PChar(Data) + Offset)^, (PChar(Buf) + WrCount)^, Copied);


-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be

Reply via email to