- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
C 代码非常简单:从名为 file_bib1
的文件中,我获取每一行文本以供进一步分析(尚未实现)。这是代码:
int main ()
{
FILE * fp;
char *a;
int check;
int end = 0;
long int size;
long int start = 0;
fp = fopen("file_bib1", "r");
while ( end != 1 )
{
size = 0;
if (ftell(fp) != 0)
start = ftell(fp) + 1;
fseek(fp, start, SEEK_SET);
while (getc(fp) != '\n')
size = size + 1;
fseek(fp, start, SEEK_SET);
a = (char*) malloc(size * sizeof(char));
check = fscanf(fp, "%[^\n]", a);
if( check == 0)
{
fscanf(fp, "%[^\EOF]", a);
end = 1;
}
printf("%s\n", a);
free(a);
}
fclose(fp);
return 0;
}
这是“file_bib1”的内容:
autore: Di Ciccio , Antonio; titolo: Manuale di architettura pisana; editore: Palestro; anno: 1990; prestito: t Fri Feb 10 00:00:00 CET 2012; volume: 1345; scaffale: A.west.2;
autore : Di Ciccio , Antonio; titolo: Manuale di architettura pisana; editore: Palestro; anno: 1990; luogo_pubblicazione: Milano; prestito: 10-02-2012; collocazione: B.23.4;descrizione_fisica: 123 p., ill, 23 cm;
autore: Melis, Antonio Pietro Angelo; autore: Gatto Magnolfi, Gianni; titolo:Manuale di architettura fiorentina; editore: EQR; anno: 1910; nota: Copia del Vescovo; collocazione: Z.12.56; luogo_pubblicazione: Firenze; descrizione_fisica: 34 p., cov, 59 cm;
autore: Kernighan, Brian W.; autore: Ritchie, Dennis M.; titolo: Il linguaggio C (seconda Edizione); editore: Jackson Libri; anno: 1989; nota: Edizione italiana; collocazione: Z.22.56; luogo_pubblicazione: Milano; descrizione_fisica: 359 p., softcov, 13 cm;
autore: Kernighan, Brian W.; autore: Pike, Rob; titolo: Programmazione nella Pratica; editore: Addison-Wesley Longman Italia Editoriale; anno: 1999; nota: Edizione italiana; collocazione: Z.24.56; luogo_pubblicazione: Milano; descrizione_fisica: 294 p., softcov, 13 cm; prestito: 13-07-2012;
autore: Singh, Jaswinder Pal; autore: Culler, David E.; autore: Gupta,Anoop; titolo: Parallel Computer Architecture: A Hardware/Software Approach; editore: Morgan Kaufmann; anno: 1999; nota: Copia M. Fillo; collocazione: QA76 58; luogo_pubblicazione: San Francisco, CA; descrizione_fisica: 1021 p., cov, ill, 23 cm;
autore: Hennessy, John L.; autore: Patterson, David A.; titolo: Computer Architecture, Fifth Edition: A Quantitative Approach ; editore: Morgan Kaufmann; anno: 2011; nota: ; collocazione: HHH.56; luogo_pubblicazione: San Francisco, CA; descrizione_fisica: 896 p., softcov, 7 1/2 X 9 1/4 inc;
autore: Luccio, Fabrizio; autore: Pagli, Linda; autore: Steel, Graham;titolo:Mathematical and Algorithmic Foundations of the Internet ; editore: CRC Press, Taylor and Francis Group; anno: 2011; nota: Chapman & Hall/CRC Applied Algorithms and Data Structures series; collocazione: Z.DDf.56; luogo_pubblicazione: New York; descrizione_fisica: 434 p., softcovcov, 22 cm;
autore : Di Ciccio , Antonio; titolo: Manuale di architettura pisana; editore: Palestro; anno: 1990; luogo_pubblicazione: Milano; prestito: 10-0-2012; collocazione: B.23.4;descrizione_fisica: 123 p., ill, 23 cm;
autore: Melis, Antonio Pietro Angelo; autore: Gatto Magnolfi, Gianni; titolo:Manuale di architettura fiorentina; editore: EQR; anno: 1910; nota: Copia del Vescovo; collocazione: Z;12.56; luogo_pubblicazione: Firenze; descrizione_fisica: 34 p., cov, 59 cm;
autore: Melis, Antonio Pietro Angelo; autore:, Gianni; titolo:Manuale di architettura fiorentina; editore: EQR; anno: 1910; nota: Copia del Vescovo; collocazione: Z.12.56; luogo_pubblicazione: Firenze; descrizione_fisica: 34 p., cov, 59 cm;
autore: Singh, Jaswinder Pal; autore: Culler, David E.; autore: Gupta,Anoop; titolo: Parallel Computer Architecture: A Hardware/Software Approach; editore: Morgan Kaufmann; 1999; nota: Copia M. Fillo; collocazione: QA76 58; luogo_pubblicazione: San Francisco, CA; descrizione_fisica: 1021 p., cov, ill, 23 cm;
autore: Hennessy, John L.; autore: Patterson, David A.; titolo: Computer Architecture, Fifth Edition: A Quantitative Approach ; editore: Morgan Kaufmann; anno: 2011; nota: ; collocazione: HHH.56; luogo_pubblicazione: San Francisco, CA; descrizione_fisica: 896 p.; softcov, 7 1/2 X 9 1/4 inc;
autore: Luccio, Fabrizio; autore: Pagli, Linda; autore: Steel, Graham;titolo:Mathematical and Algorithmic Foundations of the Internet ; editore: CRC Press, Taylor and Francis Group; anno: 2011; nota: Chapman & Hall/CRC Applied Algorithms and Data Structures series; collocazione: Z.DDf.56; luogo_pubblicazione: New York; descrizione_fisica: 434 p., softcovcov, 22 cm
autore: Melis, Antonio Pietro Angelo; autore: Gatto Magnolfi, Gianni; titolo: Manuale di architettura fiorentina; editore: EQR; anno: 2010; nota: Copia del Vescovo; prestito: f; volume: 5; Scaffale; B.12;
每一行都以 \n
结尾,最后一行像往常一样以 EOF
结尾。当我运行代码时,运行良好直到文件中间,我在 Linux 终端中看到此错误
*** glibc detected *** ./prova: double free or corruption (!prev): 0x00000000017e8250 ***
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(+0x7e626)[0x7f0049d92626]
./prova[0x400880]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed)[0x7f0049d3576d]
./prova[0x4006a9]
======= Memory map: ========
00400000-00401000 r-xp 00000000 08:01 18770 /home/arrigo/Desktop/prova
00600000-00601000 r--p 00000000 08:01 18770 /home/arrigo/Desktop/prova
00601000-00602000 rw-p 00001000 08:01 18770 /home/arrigo/Desktop/prova
017e8000-01809000 rw-p 00000000 00:00 0 [heap]
7f0049afe000-7f0049b13000 r-xp 00000000 08:01 5697 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f0049b13000-7f0049d12000 ---p 00015000 08:01 5697 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f0049d12000-7f0049d13000 r--p 00014000 08:01 5697 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f0049d13000-7f0049d14000 rw-p 00015000 08:01 5697 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f0049d14000-7f0049ec7000 r-xp 00000000 08:01 5676 /lib/x86_64-linux-gnu/libc-2.15.so
7f0049ec7000-7f004a0c6000 ---p 001b3000 08:01 5676 /lib/x86_64-linux-gnu/libc-2.15.so
7f004a0c6000-7f004a0ca000 r--p 001b2000 08:01 5676 /lib/x86_64-linux-gnu/libc-2.15.so
7f004a0ca000-7f004a0cc000 rw-p 001b6000 08:01 5676 /lib/x86_64-linux-gnu/libc-2.15.so
7f004a0cc000-7f004a0d1000 rw-p 00000000 00:00 0
7f004a0d1000-7f004a0f3000 r-xp 00000000 08:01 5656 /lib/x86_64-linux-gnu/ld-2.15.so
7f004a2d2000-7f004a2d5000 rw-p 00000000 00:00 0
7f004a2ee000-7f004a2f3000 rw-p 00000000 00:00 0
7f004a2f3000-7f004a2f4000 r--p 00022000 08:01 5656 /lib/x86_64-linux-gnu/ld-2.15.so
7f004a2f4000-7f004a2f6000 rw-p 00023000 08:01 5656 /lib/x86_64-linux-gnu/ld-2.15.so
7fff9a14f000-7fff9a170000 rw-p 00000000 00:00 0 [stack]
7fff9a1ff000-7fff9a200000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
Aborted
有人可以帮我“翻译”这个错误吗?
-------------------编辑----------
发现错误。通过代码中的一些 printf,我发现了“free(a) ”中的错误,但我无法理解为什么它会生成这样的错误......
---------编辑------------
我发现了真正的问题...程序失败的受罪行以 ;
终止符后的空白结尾...在某种程度上,free(a)
发疯了
最佳答案
您的问题是您没有分配足够的内存来存储您的行(如 R.. 的注释所示)。您可以通过打印所读内容的 strlen
以及 size
的值来发现这一点。他们是一样的。这意味着,fscanf
在写入终止 NUL
字符时会溢出输入缓冲区,从而损坏堆。您收到的错误消息是 glibc
提示其损坏的状态。
它没有发生在第一个输入行上的原因并不是很重要,因为超出分配的内存的写入会导致未定义的行为,而未定义的行为包括它不会导致问题。程序应该修复未定义的行为,不仅因为这是正确的做法,而且还因为它最终可能会导致问题。
您可以通过在扫描字符串中指定最大长度说明符来避免该问题,但您必须在缓冲区中构建扫描字符串才能实现这一点。
char fmt[64];
snprintf(fmt, sizeof(fmt), "%%%d[^\n]", size);
check = fscanf(fp, fmt, a);
但是您还必须添加代码来检查您是否确实读取了完整的行。您可能想要进行的修复是将分配大小增加一,以解决终止 NUL
的问题。但是,解决此问题后,您的程序将陷入无限循环。这是因为您的 getc
循环没有检查 EOF
。您需要添加这一点。
int c;
while ((c = getc(fp)) != '\n') {
if (c == EOF) {
end = 1;
break;
}
size = size + 1;
}
if (!end) {
//...
}
你的第二个扫描字符串%[^\EOF]
可能不是你想象的那样。无论如何,没有真正的方法告诉 fscanf 扫描到文件末尾。如果检查
失败,则更容易报告失败并退出。然后您可以稍后找出输入导致失败的原因,并修复输入。
fscanf
使用起来很棘手,因为处理自由格式输入存在各种危险。缓冲区溢出是一个问题,但如果输入不具有您期望的格式,该函数也可能会出现意外行为。这就是为什么程序员会建议无条件地将输入读入缓冲区,并解析缓冲区,而不是使用 fscanf
同时读取和解析输入。
您可以实现一些简单的代码,仅使用 fgets
来获取一行,但需要进行一些复制。如果缓冲区不以 \n
结尾,则将缓冲区大小调整得更大,然后继续阅读。
size_t size = 256;
char *line = malloc(size);
line[size-2] = '\0';
while (fgets(line, size, fp) != 0) {
while (line[size-2] && line[size-2] != '\n') {
char *bigger_line = realloc(line, 2*size);
assert(bigger_line); // rudimentary error handling
size *= 2;
line = bigger_line;
line[size-2] = '\0';
if (fgets(line + size/2 - 1, size/2 + 1, fp) == 0) {
// last line doesn't end with '\n'
break;
}
}
//... handle input line
}
//...
free(line);
关于c - *** glibc 在简单 I/O C 代码中检测到 ***,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11312432/
我正在努力实现以下目标, 假设我有字符串: ( z ) ( A ( z ) ( A ( z ) ( A ( z ) ( A ( z ) ( A ) ) ) ) ) 我想编写一个正则
给定: 1 2 3 4 5 6
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
大家好,我卡颂。 Svelte问世很久了,一直想写一篇好懂的原理分析文章,拖了这么久终于写了。 本文会围绕一张流程图和两个Demo讲解,正确的食用方式是用电脑打开本文,跟着流程图、Demo一
身份证为15位或者18位,15位的全为数字,18位的前17位为数字,最后一位为数字或者大写字母”X“。 与之匹配的正则表达式: ?
我们先来最简单的,网页的登录窗口; 不过开始之前,大家先下载jquery的插件 本人习惯用了vs2008来做网页了,先添加一个空白页 这是最简单的的做法。。。先在body里面插入 <
1、MySQL自带的压力测试工具 Mysqlslap mysqlslap是mysql自带的基准测试工具,该工具查询数据,语法简单,灵活容易使用.该工具可以模拟多个客户端同时并发的向服务器发出
前言 今天大姚给大家分享一款.NET开源(MIT License)、免费、简单、实用的数据库文档(字典)生成工具,该工具支持CHM、Word、Excel、PDF、Html、XML、Markdown等
Go语言语法类似于C语言,因此熟悉C语言及其派生语言( C++、 C#、Objective-C 等)的人都会迅速熟悉这门语言。 C语言的有些语法会让代码可读性降低甚至发生歧义。Go语言在C语言的
我正在使用快速将 mkv 转换为 mp4 ffmpeg 命令 ffmpeg -i test.mkv -vcodec copy -acodec copy new.mp4 但不适用于任何 mkv 文件,当
我想计算我的工作簿中的工作表数量,然后从总数中减去特定的工作表。我错过了什么?这给了我一个对象错误: wsCount = ThisWorkbook.Sheets.Count - ThisWorkboo
我有一个 perl 文件,用于查看文件夹中是否存在 ini。如果是,它会从中读取,如果不是,它会根据我为它制作的模板创建一个。 我在 ini 部分使用 Config::Simple。 我的问题是,如果
尝试让一个 ViewController 通过标准 Cocoa 通知与另一个 ViewController 进行通信。 编写了一个简单的测试用例。在我最初的 VC 中,我将以下内容添加到 viewDi
我正在绘制高程剖面图,显示沿路径的高程增益/损失,类似于下面的: Sample Elevation Profile with hand-placed labels http://img38.image
嗨,所以我需要做的是最终让 regStart 和 regPage 根据点击事件交替可见性,我不太担心编写 JavaScript 函数,但我根本无法让我的 regPage 首先隐藏。这是我的代码。请简单
我有一个非常简单的程序来测量一个函数花费了多少时间。 #include #include #include struct Foo { void addSample(uint64_t s)
我需要为 JavaScript 制作简单的 C# BitConverter。我做了一个简单的BitConverter class BitConverter{ constructor(){} GetBy
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我是 Simple.Data 的新手。但我很难找到如何进行“分组依据”。 我想要的是非常基本的。 表格看起来像: +________+ | cards | +________+ | id |
我现在正在开发一个 JS UDF,它看起来遵循编码。 通常情况下,由于循环计数为 2,Alert Msg 会出现两次。我想要的是即使循环计数为 3,Alert Msg 也只会出现一次。任何想法都
我是一名优秀的程序员,十分优秀!