1

我将指向 char* 数组的指针发送到函数 (args)。在该函数中,我将数组中的前两个位置的值设置为 malloc'd 字符串。当我返回数组本身是 malloc 的原始调用函数时,数组的最后一个位置给了我一个“无法访问地址 0x0 的内存”。我在 malloc/realloc/ 或存储值中做错了吗?

调用函数:

int bufspace = 0; /* bytes in table */

    ...

args = emalloc(BUFSIZ); /* initialize array */
bufspace = BUFSIZ;     //size=8192
spots = BUFSIZ / sizeof(char *);

while (*cp != '\0') //While not at the end
    cp = read_segment(cp, &len, &indollarsign, &argnum, start, &args, &prev_char_escape);
    start = cp;
    len = 0;

    if (argnum + 1 >= spots) {
        args = erealloc(args, bufspace + BUFSIZ);
        bufspace += BUFSIZ;
        spots += (BUFSIZ / sizeof(char *));
        }
    }

调用函数 (read_segment) - 首先调用存储在位置 0,然后存储在位置 1:

*args[*argnum] = newstr(start, *len); //Generate the string through malloc

在这一行,我在这些位置有字符串: *args[0] 和 *args[1]

但是一旦我返回调用函数 args[0] 有一个字符串,但 args[1] 显示“无法访问地址 0x0 的内存”

4

1 回答 1

2

*args[*argnum]取消引用 处的指针args[*argnum]。我想你的意思是

(*args)[*argnum] = newstr(start, *len);
于 2012-04-21T20:06:21.123 回答