This is my fault :)
rcIntArray(n) used to just create capacity and leave size as 0. My patch called
resize which allocates space but also sets the array size.
inline rcIntArray(int n) : m_data(0), m_size(0), m_cap(n) { m_data =
(int*)rcAlloc(sizeof(int)*n, RC_ALLOC_TEMP); }
should hopefully behave as before.
Original issue reported on code.google.com by cameron....@gmail.com on 11 Jul 2010 at 6:29
Original issue reported on code.google.com by
cameron....@gmail.com
on 11 Jul 2010 at 6:29