繁体   English   中英

C中的棘手段错误

[英]Tricky seg fault in C

我正在尝试为我的大学任务运行一个C项目,并且我在以下代码段中的“while(current-> next!= NULL){”行中遇到了一个seg错误:

FILE* f = fileOpen("test.txt");
if (f != NULL){
    functionList = fileReadToMemory(f, &graphParams);//functionList is a pointer to the first value of the linked list it creates
    current = functionList;

    while (current->next != NULL) {
        printf("%d %d %d %s", current->red, current->green, current->blue, current->expression);//Prints value of linked list
        current = current -> next;
    }
}

gdb给我的错误如下:

Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: KERN_INVALID_ADDRESS at address: 0x000000000000003a
0x0000000100000b30 in main () at main.c:23
23          while (current->next != NULL) {

我究竟做错了什么?

提前致谢!

你需要这样做

while (current != NULL) 

代替

current->next != NULL 

因为列表中的最后一个元素会导致段错误。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM