Closed GoogleCodeExporter closed 9 years ago
Thanks; added in rev 347
Original comment by lidg...@gmail.com
on 13 Jan 2014 at 8:03
Thanks for patching this in the source. Great library!
I found a couple of issues with my patch and wanted to follow up.
Fixed issue with previous patch: Buffer was getting set larger than needed for
the write
- int newBitLength = Math.Max(m_bitLength + 32, offset + 32);
+ int newBitLength = Math.Max(m_bitLength, offset + 32);
Added [CLSCompliant(false)] attribute on WriteAt() methods using unsigned
values to remove compile warnings.
Added WriteAt() methods for UInt16, Int16 and UInt64.
While this issue is currently marked fixed, I figured it would be best to track
the changes with the WriteAt() patch together. If you want I can create
another issue, just let me know!
Original comment by tal...@gmail.com
on 24 Jan 2014 at 3:06
Attachments:
Patched in rev 350; thanks.
Original comment by lidg...@gmail.com
on 25 Jan 2014 at 5:51
Original issue reported on code.google.com by
tal...@gmail.com
on 12 Jan 2014 at 6:51Attachments: