gpt4 book ai didi

c - sysmalloc : Assertion failure on ubuntu environment

转载 作者:行者123 更新时间:2023-12-04 10:54:02 25 4
gpt4 key购买 nike

下面的 C 代码在我的 mac OS X 环境中运行良好,但如果我尝试在 ubuntu 环境中运行此代码,每当我输入偶数个输入(例如“1 2”)时,我都会遇到 malloc 断言失败,但奇数输入“1 2 3”有效。错误是。

a.out: malloc.c:2372: sysmalloc: 断言`(old_top == (((mbinptr) (((char *) &((av)->bins[((1) - 1) * 2 ])) - __builtin_offsetof (struct malloc_chunk, fd)))) && old_size == 0) || ((unsigned long) (old_size) >= (unsigned long)((((__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 *(sizeof(size_t))) - 1)) & ~((2 *(sizeof (size_t))) - 1))) && ((old_top)->size & 0x1) && ((unsigned long) old_end & pagemask) == 0)' 失败。中止(核心转储)

我不知道 OS X 和 ubuntu 环境之间的区别,所以如果有人能指出问题所在,我将不胜感激。我正在运行 Ubuntu 14.04。它似乎在 y != NULL 循环中崩溃了

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>


void free_argv(char **argv,int counter)
{
int i = 0;
for(i=0;i<counter;i++)
{
free(argv[i]);
}

free(argv);
}

int main()
{
char *line = NULL;
size_t len = 0;
ssize_t read;
char **argv = NULL;
int counter;
int status;

while ((read = getline(&line, &len, stdin)) != -1)
{

counter = 1;
printf("$ ");
char* x = strtok(line,"\n");

int i = 0;

while(x[i] != '\0')
{
if(x[i] == ' ')
{
counter++;
}
i++;
}


argv = malloc(sizeof(char*)*(counter+1));

argv[counter+1] = NULL;

i = 0;

char* y = strtok(x," ");

printf("user input:\n");
while(y != NULL)
{
argv[i] = malloc(sizeof(char)*strlen(y));
strncpy(argv[i],y,strlen(y));
printf(" %s\n",argv[i]);
y = strtok(NULL," ");
i++;
}
free_argv(argv,counter);
}
return 0;
}

最佳答案

在这种情况下考虑使用 valgrind - 它非常有帮助!它给了我什么:

==6454== Invalid write of size 8
==6454== at 0x4008CE: main (sysmalloc.c:49)
==6454== Address 0x51e0128 is 0 bytes after a block of size 40 alloc'd
==6454== at 0x4C2C27B: malloc (in /usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so)
==6454== by 0x4008B1: main (sysmalloc.c:47)

sysmalloc.c:49 是 argv[counter+1] = NULL; - 这是线路引起的问题。请注意,在 C 中,数组索引从零开始,因此对于长度为 N+1 的数组,最后一个索引是 N。因此,您不是写入最后一个 argv 指针,而是将 NULL 写入 sysmalloc 内部使用的区域 从而导致错误。

将此行更改为 argv[counter] = NULL;

另请注意有关 strcpy 用法的注释。

关于c - sysmalloc : Assertion failure on ubuntu environment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28353287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com