|
ProbeForRead( pImageBase, sizeof( pImageBase ), __alignof( pImageBase ) ); |
Bad size for ProbeForRead, code trying to check for sizeof(PUCHAR), but want to read sizeof(IMAGE_DOS_HEADER)
ProbeForRead( pImageBase, sizeof(IMAGE_DOS_HEADER), __alignof( pImageBase ) );