我想在以下函数中返回一个指向链表头部结构的指针,但由于我的fread无法读取struct的字符串,我必须malloc一些变量并指向newhader-
struct head *read_strings(char *file) {
FILE *my_file;
struct head * newheader = NULL;
char *str = NULL;
newheader = buildhead();
int len, lenStr, lenTotal = 0;
printf("\n\n");
my_file = fopen(filename, "rb");
if (my_file == NULL) {
printf("error\n");
}
fread(&len,sizeof(int),1, my_file);
newheader->name = malloc(len);
fread(newheader->name,sizeof(char),len, my_file);
fread(&newheader->length,sizeof(int),1, my_file);
if (newheader->length != 0) {
if (newheader->length == lenTotal) {
fread(&lenStr,sizeof(int),1, my_file);
str = malloc(lenStr); //char *str = malloc(lenStr);
fread(str,sizeof(char),lenStr, my_file);
create_string(newheader, str);
lenTotal += lenStr;
str = NULL; //free(str);
}
else {
while (newheader->length != lenTotal) {
fread(&lenStr,sizeof(int),1, my_file);
str = malloc(lenStr); //char *str = malloc(lenStr);
fread(str,sizeof(char),lenStr, my_file);
create_string(newheader, str);
lenTotal += lenStr;
str = NULL; //free(str);
}
}
}
printString(newheader);
fclose(my_file);
free(str);
//if i free newheader->name here then I get no memory leaks
//free(newheader->name);
freeStructure(newheader);
return newheader;
}
我需要从二进制文件中读取字符串并将它们存储到struct中。但是我不能将值直接存储到struct的字符串变量中,除非我malloc一个新字符串并指向它。你可以在上面的代码中看到我能够读取newhader-
这就是我的二进制文件的样子。它在每个字符串和int之后都有空终止符。
0000000 021 \0 \0 \0 i t i s a g o o d
0000020 d a y \0 R \0 \0 \0 # \0 \0 \0 I t
0000040 w a s t h e b e s t o f
0000060 o y e h o y e t i m e s . \0
0000100 034 \0 \0 \0 I t w a s t h e b
0000120 l u r s t o f t i m e s . \0
0000140 \a \0 \0 \0 m o n k e y \0 006 \0 \0 \0 p
0000160 a n d a \0 006 \0 \0 \0 s h i f u \0
0000177
如果我释放了任何一个人-
*** Error in `./test': munmap_chunk(): invalid pointer:
0x000000000040133e *** Aborted.
如果不释放它,那么我在1个块中丢失了17个字节。
==24169== HEAP SUMMARY:
==24169== in use at exit: 0 bytes in 0 blocks
==24169== total heap usage: 5 allocs, 6 frees, 1,201 bytes allocated
==24169==
==24169== All heap blocks were freed -- no leaks are possible
==24169==
==24169== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from0)
==24169==
==24169== 1 errors in context 1 of 1:
==24169== Invalid free() / delete / delete[] / realloc()
==24169== at 0x4C29E90: free (in
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==24169== by 0x401298: freestruct (A1.c:267)
==24169== by 0x400F8A: write_strings (A1.c:189)
==24169== by 0x400840: main (test.c:25)
==24169== Address 0x40133e is not stack'd, malloc'd or (recently)
free'd
==24169==
==24169== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from0)
这是我的freestruct()函数中的一小段代码
if (header->next == NULL) {
header->length = 0;
free(header->name);
free(header);
}
将字符串写入二进制文件后,我释放了整个结构,然后在read_strings函数中再次创建
编辑:如果我释放了newhader-
我为我糟糕的语法道歉。
如果我正确理解了您的setName
和getName
函数,那么这三行就是问题所在:
...
setName(newheader, name);
newheader->name = getName(newheader);
...
free(name);
首先,第一行做了同样的事情,但这不是问题,只是多余的。是最后一行导致了问题。
你让newhader-
您要么需要复制(例如使用非标准但常见的
strdup
函数)。或者不释放内存。
让我们看看我是否能说得更清楚…
您有一个变量
name
为其分配内存。它看起来像这样:
+------+ +---------------------+
| name | --> | memory for the name |
+------+ +---------------------+
什么任务
newheader->name = name;
实际上只是复制指针,而不是它指向的内存。所以在赋值之后,你有这样的东西:
+------+
| name | ------------\
+------+ \ +---------------------+
>-> | memory for the name |
+-----------------+ / +---------------------+
| newheader->name | -/
+-----------------+
您现在有两个变量指向同一个内存。
那你做
free(name);
这个free是内存,但请记住,我们有两个变量指向同一个内存。现在看起来像
+------+
| name | -------------> ?
+------+
+-----------------+
| newheader->name | --> ?
+-----------------+
因此,每当您尝试访问
newhader时-
相关问题
- Android:在模块jefied-play-services-测量和jefied-play-services-测量-impl中发现重复类
- 在Hashmap中查找匹配的键/值对
- 如何迭代Hashmap并与同一Hashmap中的其他键进行组合以比较它们的对象
- HashCode-如果相等的对象碰巧在同一个桶中散列会发生什么?
- JavaHashMap实现hashcode问题
- 如何防止对数组中类对象的重复引用?
- JavaHashMap内部数据结构在重新散列期间如何变化?
- 如何以及何时在HashMap中完成重新散列
- 在hashmap或hashtable中重新散列的成本
- HashMap如何识别内部数组中的哪些位置包含元素?
- 当HashMap增加其大小时,HashMap中值的索引会发生什么?
- @BeforeClass在ktor测试类中不工作
- Jest vanilla JavaScript JSDOM刷新失败,切换beforeAll到before每一个后的第二次测试中断
- 在笑话中,定义全局变量是否与在BeforeAll中定义相同?
- 子类TestCase并使用JUnit 4注释
- 静态编程语言中@BeforeAll的正确解决方法是什么
- 线程“main”java. lang.NoClassDefFoundError中的异常:在Intellij[Spring boot]中
- 线程“main”java. lang.NoClassDefFoundError中的异常:org/apache/log4j/ProvisionNode
- log4j2 java. lang.NoClassDefFoundError:org/apache/log/log4j/LogManager
- 异步管道是否从服务中定义并从组件变量指向的可观察对象取消订阅?