gpt4 book ai didi

c - malloc+strdup 会不会泄漏内存?

转载 作者:行者123 更新时间:2023-12-02 22:19:10 24 4
gpt4 key购买 nike

与:

char *x = malloc(1024);
strcpy(x, "asdf");
x = strdup(x);
free(x); // OK
free(x); // Segfault

如果我只释放一次,我还会泄漏吗?如果是这样,如何避免?

最佳答案

你泄漏内存是因为你忘记了第一个指针。这样做:

char * x = malloc(1024);
strcpy(x, "asdf");
char * y = strdup(x);

free(x);
free(y);

关于c - malloc+strdup 会不会泄漏内存?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13998725/

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