每当我试图运行下面的代码时,我就会得到一个错误。
从Visual Studio添加了另一个错误图像。
添加了错误的确切来源。
The following bit of code here is :
void update_memblock(MEMBLOCK *mb)
{
static unsigned char tempbuf[128 * 1024];
unsigned int bytes_left;
unsigned int total_read;
unsigned int bytes_to_read;
unsigned int bytes_read;
bytes_left = mb->size;
total_read = 0;
while (bytes_left)
{
bytes_to_read = (bytes_left > sizeof(tempbuf)) ? sizeof(tempbuf) : bytes_left;
ReadProcessMemory(mb->hProc, mb->addr + total_read, tempbuf, bytes_to_read, (DWORD*)&bytes_read);
if (bytes_read != bytes_to_read) break;
memcpy(mb->buffer + total_read, tempbuf, bytes_read);
bytes_left -= bytes_read;
total_read += bytes_read;
}
mb->size = total_read;
}
The Structure looks as follows :
typedef struct _MEMBLOCK {
HANDLE hProc;
unsigned char *addr;
int size;
unsigned char *buffer;
struct _MEMBLOCK *next;
} MEMBLOCK;
尝试了多次切换,从改变数组大小到删除变量,再切换到另一个变量,显然它仍然会抛出这个错误。请帮我找出问题所在。谢谢。
最佳答案
如果您阅读documentation,您会注意到ReadProcessMemory
的参数应该是SIZE_T
s。DWORD
类型为32位,在64位平台上大小为64位。当bytes_to_read
按值传入时,它无关紧要,但8个字节将写入bytes_read
指向的指针,其sizeof
为4。
此外,您应该得到一个指针类型不匹配,因为在这种情况下DWORD *
与SIZE_T *
不兼容。