- 论坛徽章:
- 0
|
本帖最后由 yyangh 于 2010-08-05 10:23 编辑
目的:实现从一段存有字符串的内存中,每次读取N个字符,但这段字符串不是存在数组中。
不能用数组下标的方式读取,因为数组长度有限,这个文本内容可能很长,放不下。
示例代码:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
int main()
{
int fd;
char * buffer;
buffer = (char *) malloc (20000 * sizeof(char));
char tmp[600];
fd=open("/root/test.txt",O_RDONLY);
read(fd,buffer,20000);
close(fd);
char * p = buffer;
for(i=0;i<10;i++)
{
strncpy(tmp,buffer,600);
printf("tmp is:%s\n",tmp);
p=p+(i*600);
}
free(buffer);
}
报错内容:
i=0的时候是正常的,执行了p+(i*600);以后就出问题了,使用memcpy也不行,搞好久,真不知道这是为什么。。。。。。。
指针为什么不能移动??????
下面是错误内容:
*** glibc detected *** ./testtmp0: munmap_chunk(): invalid pointer: 0x0804b0d0 ***
======= Backtrace: =========
/lib/libc.so.6[0xb7ef6654]
/lib/libc.so.6[0xb7ef7639]
./testtmp0[0x80485f8]
/lib/libc.so.6(__libc_start_main+0xe5)[0xb7ea0705]
./testtmp0[0x80484c1]
======= Memory map: ========
08048000-08049000 r-xp 00000000 08:02 12315 /root/test/testtmp0
08049000-0804a000 r--p 00000000 08:02 12315 /root/test/testtmp0
0804a000-0804b000 rw-p 00001000 08:02 12315 /root/test/testtmp0
0804b000-0806c000 rw-p 0804b000 00:00 0 [heap]
b7e89000-b7e8a000 rw-p b7e89000 00:00 0
b7e8a000-b7fdf000 r-xp 00000000 08:02 113139 /lib/libc-2.9.so
b7fdf000-b7fe0000 ---p 00155000 08:02 113139 /lib/libc-2.9.so
b7fe0000-b7fe2000 r--p 00155000 08:02 113139 /lib/libc-2.9.so
b7fe2000-b7fe3000 rw-p 00157000 08:02 113139 /lib/libc-2.9.so
b7fe3000-b7fe6000 rw-p b7fe3000 00:00 0
b7fff000-b800c000 r-xp 00000000 08:02 113251 /lib/libgcc_s.so.1
b800c000-b800d000 r--p 0000c000 08:02 113251 /lib/libgcc_s.so.1
b800d000-b800e000 rw-p 0000d000 08:02 113251 /lib/libgcc_s.so.1
b800e000-b8010000 rw-p b800e000 00:00 0
b8010000-b802e000 r-xp 00000000 08:02 113132 /lib/ld-2.9.so
b802e000-b802f000 r--p 0001d000 08:02 113132 /lib/ld-2.9.so
b802f000-b8030000 rw-p 0001e000 08:02 113132 /lib/ld-2.9.so
bfd1a000-bfd2f000 rw-p bffeb000 00:00 0 [stack]
ffffe000-fffff000 r-xp 00000000 00:00 0 [vdso]
已放弃 |
|