X-Git-Url: https://mattmccutchen.net/bigint/bigint.git/blobdiff_plain/be1bdfe2b1863ad12b104fadb6bbbb4524724146..3aaa5ce601b009373fa7464f6de044f7b2e017ea:/ChangeLog diff --git a/ChangeLog b/ChangeLog index 759e629..45e36b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ Change Log ========== These entries tell you what was added, fixed, or improved in each version as compared to the previous one. In case you haven't noticed, a version number roughly corresponds to the release date of that version in `YYYY.MM.DD[.N]' format, where `.N' goes `.2', `.3', etc. if there are multiple versions on the same day. +2006.08.14 +---------- +In BigUnsigned::bitXor, change allocate(b2->len) to allocate(a2->len): we should allocate enough space for the longer number, not the shorter one! Thanks to Sriram Sankararaman for pointing this out. + 2006.05.03 ---------- I ran the sample program using valgrind and discovered a `delete s' that should be `delete [] s' and a `len++' before an `allocateAndCopy(len)' that should have been after an `allocateAndCopy(len + 1)'. I fixed both. Yay for valgrind!