- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的程序从文件中读取人员并将他们的信息保存到如下所示的人员结构中:
struct person
{
char *fname;
char *lname;
int id;
};
typedef struct person Person;
这些人保存在一个 Persons 数组中,填充该数组的函数如下所示(total 变量是从文件中计算的 Persons 总数):
Person* fillArray(int total, FILE *fin)
{
rewind(fin);
int i;
char temp[50];
char temp2[50];
Person *p = (Person*) calloc(total, sizeof(Person));
for(i = 0; i < total; i++)
{
fscanf(fin, "%s", temp);
p[i].fname = (char *) calloc(strlen(temp)+1, sizeof(char));
strcpy(p[i].fname, temp);
fscanf(fin, "%s", temp2);
p[i].lname = (char *) calloc(strlen(temp)+1, sizeof(char));
strcpy(p[i].lname, temp2);
fscanf(fin, "%d", &(p + i)->id);
}
return p;
}
我清理了所有使用的内存,并为临时字符串末尾的“\0”调用了内存。不确定为什么会出现这些错误:
HEAP SUMMARY:
==4736== in use at exit: 0 bytes in 0 blocks
==4736== total heap usage: 8 allocs, 8 frees, 414 bytes allocated
==4736==
==4736== All heap blocks were freed -- no leaks are possible
==4736==
==4736== ERROR SUMMARY: 10 errors from 2 contexts (suppressed: 0 from 0)
==4736==
==4736== 3 errors in context 1 of 2:
==4736== Invalid write of size 1
==4736== at 0x402C6E8: strcpy (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==4736== by 0x804898E: fillArray (cscd240_s13_lab11Functions.c:30)
==4736== by 0x8048731: main (cscd240_s13_lab11Tester.c:13)
==4736== Address 0x41ef24f is 3 bytes after a block of size 4 alloc'd
==4736== at 0x402A5E6: calloc (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==4736== by 0x804896A: fillArray (cscd240_s13_lab11Functions.c:29)
==4736== by 0x8048731: main (cscd240_s13_lab11Tester.c:13)
==4736==
==4736==
==4736== 7 errors in context 2 of 2:
==4736== Invalid write of size 1
==4736== at 0x402C6C3: strcpy (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==4736== by 0x804898E: fillArray (cscd240_s13_lab11Functions.c:30)
==4736== by 0x8048731: main (cscd240_s13_lab11Tester.c:13)
==4736== Address 0x41ef24c is 0 bytes after a block of size 4 alloc'd
==4736== at 0x402A5E6: calloc (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==4736== by 0x804896A: fillArray (cscd240_s13_lab11Functions.c:29)
==4736== by 0x8048731: main (cscd240_s13_lab11Tester.c:13)
==4736==
==4736== ERROR SUMMARY: 10 errors from 2 contexts (suppressed: 0 from 0)
谢谢你的帮助。我查看了几个线程,其中大部分都不是对字符末尾的 '\0' 进行调用/分配。我这样做了,但是当我使用 qsort() 对 Person 数组进行排序时,我仍然会遇到这些错误以及更多错误。如果这与之前提出的问题相同,我深表歉意,我找不到主题。
最佳答案
你为第二部分的分配使用了错误的长度,
fscanf(fin, "%s", temp2);
p[i].lname = (char *) calloc(strlen(temp)+1, sizeof(char));
strcpy(p[i].lname, temp2);
应该在那里使用 strlen(temp2);
。
关于c - Valgrind 多个 "invalid write/read of size 1"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16574153/
我正在执行 UPDATE .WRITE() 语句,并发现它显然只有在您像这样定义它时才有效: string sql = "UPDATE [dbo].[Table] SET [Column].WRITE
我在 Unix 系统上用 C 编程。我知道: write(fd,"ABCD",4); 比这样做更好: write(fd, "A", 1); write(fd, "B", 1); write(fd, "
func hash(s string) uint32 { h := fnv.New32a() h.Write([]byte(s)) return h.Sum32() } 对于这
在经典的 asp 页面中,有人告诉我您可以使用 vbscript 或 jscript。而 jscript 就是 javascript。 所以我不确定 Response.Write、Response.W
当 openssl 子进程尝试 write() 到本地目录时,我收到此错误。在调用 write() 之前连接已关闭。它没有与 ssl 连接,因为我什至无法从 nodejs 文档启动示例代码。 我错过了
最近我在试验netty。我遇到了以下问题: ctx.channel().write(new TextWebSocketFrame("hello")) 没有在客户端返回 hello,但是 ctx.cha
请解释以下内容: def feed(data): import os print "DATA LEN: %s" % len(data) f = open("copy", "w") f.
有什么区别debug.write 和 Trace.write ?每个应该什么时候使用? 最佳答案 在典型的发布构建配置中,Debug class 被禁用并且什么都不做。 Trace但是,仍然可以在发行
我只是想知道,就性能而言,哪个更好(我在 FileStream 中使用 StreamWriter): 多次调用 Stream.Write(): StreamWriter sw = new Stream
我发现自己写给 stringwriter,然后在函数末尾执行 resp.Write(sw.ToString())。这是不必要的吗?如果我多次使用 HttpResponse.Write,即使我的页面是
我正在尝试通过 JavaScript 文件从 electron 打开一个新窗口,它可以工作,并打开了新窗口,但我无法将 HTML/文本写入新文件。我收到那个错误: Cannot read proper
我们对 QIODevice::write 的一般行为和具体的 QTcpSocket 实现感到非常困惑。有一个 similar question已经,但答案并不令人满意。主要的混淆源于分别提到的 byt
我知道这听起来像是一个愚蠢的问题: write(*,*) 和 write(6,*) ?我在我研究所的 super 计算机上运行一个复杂的代码,它通过一个不同于 6 的单元号输出一个数据文件,显然编译的
我有一个结构体,它可以通过一系列复杂的方法调用转换为文本,其中包含大量 write!调用。此文本可以写入文件或调试日志。我正在决定是否使用 fmt::Write 或 io::Write .我不能真正使
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
In the C standard library, an output can't be followed by an input and vice versa. 对于Linux API,可以在re
我希望能够为一件事做 document.write。然后延迟半秒,然后再记录。写一些。你知道这是否可能吗?而且,如果是这样,怎么办?到目前为止,我已经尝试过了,但没有奏效: document.writ
为什么通过 onclick 属性调用的 write() 函数解析为 document.write() 并替换文档?有什么办法可以阻止这种情况发生吗? Write Function Alternat
我想创建一个包含多个“页面”的文本文件,并将每个页面的字节偏移量记录在一个单独的文件中。为此,我将字符串打印到主输出文件并使用 bytes_written += file.write(str) 计算字
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this qu
我是一名优秀的程序员,十分优秀!