1

因此,在我正在进行的一个项目中,我收到以下错误:

*** glibc detected *** ./social_network: munmap_chunk(): invalid pointer: 0x09a913b0 ***

一些 printf 语句显示我正在释放的导致此错误的结构的内存地址为....17。那么这怎么可能呢?会发生什么让这看起来……?

这是崩溃前的一些输出:

temp is: 162075592
temp user is  162075408
After free of temp
inside while loop, first line
before free of temp
temp is: 162075760
temp user is  162075480
After free of temp
inside while loop, first line
before free of temp
temp is: 162075568
temp user is  17

这是输出输出的代码

 21 void destroy() {
 22 
 23     struct user_node *node;
 24 
 25     struct friend_node *temp;
 26     struct friend_node *next_temp;
 27     
 28     //iterate over the list of users
 29     while (*head != NULL) {
 30         printf("before a_friend\n");
 31         temp = (*head)->a_friend;
 32         
 33         //Iterate over friends of users, free friend nodes
 34         while (temp != NULL) {
 35             printf("inside while loop, first line\n");
 36             next_temp = temp->next_friend;
 37             printf("before free of temp\n");
 38             printf("temp is: %d\n", (int) temp);
 39             printf("temp user is  %d\n", (int)temp->user);
 40             free(temp); <==================================SEGFAULT IS HERE!!!!!!!!!!!!!
 41             printf("After free of temp\n");
 42             temp = next_temp;
 43             next_temp = NULL;
 44         }
 45 
 46         node = (*head)->next_user;
 47         printf("before free of: %s\n", (*head)->name);
 48         free(*head);
 49         printf("after free of that person...\n");
 50         *head = node;
 51         printf("*head = node afterwards\n");
 52         node = NULL;
 53     }
 54     printf("before final free...\n");
 55     free(head);
 56 }

编辑:

结构朋友节点

 23 //node used to store a pointer to a user_node and next friend
 24 struct friend_node {
 25     struct friend_node *next_friend;
 26     struct user_node *user;
 27 }; 

结构用户节点

 12 //Struct definitions
 13 //node used to store information about a user
 14 struct user_node {
 15     char name[21];
 16     int age;
 17     int gender;
 18     char location[21];
 19     struct friend_node *a_friend;
 20     struct user_node *next_user;
 21 };
 22    
4

4 回答 4

7

这通常发生在您使用 NULL 指针时。你看,当你访问一个结构的成员时,它的偏移量被添加到指针上,然后被取消引用:

somestruct *p = NULL;
printf("%d", p->member);

如果成员位于偏移量,例如 0xC,那么您将不会收到“尝试访问 0x0 处的内存”之类的错误,而是“尝试访问 0xC 处的内存”。

编辑:正如其他人所建议的,这可能不是您的问题的原因。但这是在“两位数指针”处收到错误的一个常见原因。

于 2012-11-16T15:19:32.957 回答
2

可能发生了什么让这看起来

有很多种未定义的行为。缓冲区溢出、对已释放对象的访问、未初始化的变量都会浮现在脑海中。

在追捕这些东西时,valgrind是你最好的朋友。尽早并经常使用它。

于 2012-11-16T15:23:02.413 回答
2

我在您的代码中没有看到任何暗示您正在释放 address 的结构的内容17,因为您似乎错误地相信了这一点。

崩溃消息和您的转储都清楚地表明您正在尝试释放指向temp地址162075568( 0x09a913b0) 的指针。该指针指向无效内存,这就是free崩溃的原因。这也是为什么您可能会看到17存储在该内存中的原因。那个内存是无效的,所以它存储随机垃圾也就不足为奇了。

算了吧17。它与任何事情无关。你的问题是1620755680x09a913b0)。此值无效,这就是问题的根源。

于 2012-11-16T15:26:08.000 回答
0

确保structNULL创建/分配struct.

于 2012-11-16T15:20:36.130 回答