1. 22 11月, 2018 16 次提交
  2. 21 11月, 2018 7 次提交
  3. 20 11月, 2018 13 次提交
  4. 17 11月, 2018 4 次提交
    • B
      2.1.3 · e3a1a835
      Behdad Esfahbod 提交于
      e3a1a835
    • B
      Fix recent commits · 9714e114
      Behdad Esfahbod 提交于
      9714e114
    • B
      Revert b4c61130 · 0328a1ce
      Behdad Esfahbod 提交于
      Was causing more trouble than it solved.  We use unsigned for indexing,
      and it's not helpful to allow that wrapping to negative integers on
      32bit machines.  The only way we could work around it would have been
      by accepting int64_t arg, but that's overkill.
      
      Ignore the MSVC 2008 build issue.  We don't support that compiler.
      0328a1ce
    • B
      Detect over/under-flow in UnsizedArray::operator[] · 52f61cdb
      Behdad Esfahbod 提交于
      Was causing bad substitutions in mort table because of WordOffsetToIndex()
      producing negative numbers that were cast to unsigned int and returned as
      large numbers (which was desirable, so they would be rejected), but then
      they were cast to int when passed to this operator and acting as small
      negative integers, which was bad...
      
      Detect overflow.  Ouch, however, now I see this still fails on 32-bit.
      Guess I'm going to revert an earlier change.
      52f61cdb