The _size_t definition is set to c_uint32, but this is wrong for 64bits system.
Remember on 64 bits system:
printf("size_t=%d\n", sizeof(size_t)) will output 8
printf("unsigned int=%d\n", sizeof(unsigned int)) will output 4
Original issue reported on code.google.com by txprog on 27 Sep 2011 at 10:54
Original issue reported on code.google.com by
txprog
on 27 Sep 2011 at 10:54Attachments: