首页
社区
课程
招聘
未解决 [求助]关于Q版缓冲区溢出这本书在堆溢出章节的代码问题
发表于: 2018-11-13 10:48 2013

未解决 [求助]关于Q版缓冲区溢出这本书在堆溢出章节的代码问题

2018-11-13 10:48
2013
一下为完整代码
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>

char mybuf[]="ww0830";
int main(int argc,char * argv[])
{
HANDLE hHeap;
char *buf1,*buf2;
hHeap=HeapCreate(HEAP_GENERATE_EXCEPTIONS,0x10000,0xfffff);
printf("mybuf addr = %p\n",mybuf);
buf1=HeapAlloc(hHeap,0,200);
strcpy(buf1,mybuf);
printf("buf1=%s\n",buf1);
buf2=HeapAlloc(hHeap,0,16);

HeapFree(hHeap,0,buf1);
HeapFree(hHeap,0,buf2);
return 0;
}
错误提示是
 error C2440: '=' : cannot convert from 'void *' to 'char *'
错误语句是 buf1=HeapAlloc(hHeap,0,200);

请问这里怎么改?

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 10095
活跃值: (2483)
能力值: ( LV7,RANK:115 )
在线值:
发帖
回帖
粉丝
2
转换成char*就可以了
buf1=(char*)HeapAlloc(hHeap,0,200);
2018-11-13 11:09
0
游客
登录 | 注册 方可回帖
返回
//