In an iOS application, I have a struct that looks like this
typedef struct _Pixel {
signed char r;
signed char g;
signed char b;
} Pixel;
In my code, I allocate an array of these with calloc:
Pixel* buff = calloc(width * height, sizeof(Pixel));
Now, this works perfectly in the simulator, but on the device, if I try to access buff[width * height - 1] (i.e. the last element in buff), I get an EXC_BAD_ACCESS.
This didn't make sense to me, so after a few hours of debugging, I wondered if it was some kind of alignment issue, so on a whim I tried:
typedef struct _Pixel {
signed char r;
signed char g;
signed char b;
signed char padding;
} Pixel;
making the size of Pixel a power of two.
This fixes the EXC_BAD_ACCESS, but it's awfully weird. Does anyone have any insight into what's going on here? Am I just masking the underlying problem by padding the struct or can alignment really cause a bad access (I thought alignment only had an effect on performance, not correctness).