Changes between Version 1 and Version 2 of Ticket #11859, comment 4


Ignore:
Timestamp:
Mar 19, 2015, 9:06:28 PM (9 years ago)
Author:
ttcoder

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11859, comment 4

    v1 v2  
    1 hrev48802, in the same timeframe as this ticket was created, likely introduced a regression (the `while (index-- > 0)` still uses the postfix decrement operator even though the index is now used for accessing items, it should be changed to a prefix operator otherwise at first loop iteration we access out-of-bounds and at last iteration we access item # 1 instead of # 0 -- humble apologies if I'm doing a stupid mistake in reading the code, it's been a long day again today).
    2 
    3 Any chance this crash might be related to that regression? The trace mentions layout.
     1disregarde