解决方法之一:
把
structPakFileSystem
{
RtFileSystem dfs;
PakOpenFile *files;
};
改成
structPakFileSystem
{
RtWinFileSystem dfs;
PakOpenFile *files;
};
而且这个结构必须是RwMalloc或RwCalloc出来的,因为它是要通过RwFree释放,不能是全局变量。
因为这个自定义的文件系统使用的fsClose函数指针指向的是默认的文件系统的函数,即windows的,那个函数会访问一个RtWinFileSystem的结构,是通过传入的RtFileSystem类型指针。
但是RtWinFileSystem比RtFileSystem 大。导致越界访问。
Windows默认文件系统的安装在win.c 中RwBool psInstallFileSystem(void),然后RtWinFSystemInit()。参考src中rtfswin.c中该函数,fs->fsClose = TkWinFSClose;
static void TkWinFSClose(RtFileSystem *winFileSystem )。
我曾经给RenderWare Support提过这个问题,他们给的解决方法跟我的不一样,好像是把fsClose指向的函数换掉。