关于如何为双指针正确分配内存,我有点困惑。
我的代码在第二次尝试在第一个UCHAR指针数组的第二个索引处存储值时导致段错误。
如有任何帮助,不胜感激。
赋值双指针:
width = BMP_GetWidth (bmp);
height = BMP_GetHeight (bmp);
depth = BMP_GetDepth (bmp);
r = (UCHAR **) malloc(sizeof(UCHAR *) * height);
g = (UCHAR **) malloc(sizeof(UCHAR *) * height);
b = (UCHAR **) malloc(sizeof(UCHAR *) * height);
init_rgb(bmp, width, height, r, g, b);
尝试使用指针(在x = 1时失败):
void init_rgb(BMP *bmp, UINT w, UINT h, UCHAR **r, UCHAR **g, UCHAR **b) {
printf("%ld, %ldn", w, h);
UINT x, y;
for (y = 0; y < h; y++) {
r[y] = (UCHAR *)malloc(sizeof(UCHAR) * w);
for (x = 0; x < w; x++) {
BMP_GetPixelRGB(bmp, x, y, &r[y][x], &g[y][x], &b[y][x]);
printf("FAILING After First Iterationn");
}
}
}
看起来你需要像
这样的行r[y] = (UCHAR *)malloc(sizeof(UCHAR) * w);
g
和b
也有。如果不这样做,g[y]
和b[y]
是未定义的。当你引用这些时,你的代码可能会失败。