PhysFS_init()返回非零且错误:“无错误”

时间:2019-03-09 15:00:48

标签: c++ windows physfs

我的代码遇到了很奇怪的崩溃,不确定是什么原因导致的。我试图在我的C ++代码中使用PhysFS。下面的代码是类的一部分,Visual Studio 2017告诉我崩溃发生在PHYSFS_mount()中,随后出现在EnterCriticalSection()中,据我了解,这与互斥有关。现在,根据我的理解,这应该是正确的(请注意,主要调用initArchives()首先)

physfs_initialized = false;

...

void scope::parse_archive(const std::string& archive_path, const std::string& path_in_archive)
{
    assert(physfs_initialized);

    m_archivePath = archive_path;
    m_relativeArchivePath = path_in_archive.substr(1);

    //fsx = std::filesystem or std::expiremental::filesystem whatever floats your boat
    if(exists(fsx::path(archive_path))) return;


    if(!PHYSFS_mount(m_archivePath.c_str(),"",0)) return;
    const auto file = PHYSFS_openRead(m_relativeArchivePath.c_str());

    if(file) m_isValid = true;

    PHYSFS_close(file);
    PHYSFS_unmount(m_archivePath.c_str());
}

...

void initArchives(char ** argv)
{
    if (!PHYSFS_init(argv[0])) physfs_initialized = true;
    //a bit of ugly syntax because of the need to consume the return type
    atexit([]() {PHYSFS_deinit(); });
}

崩溃显然出现在这里


int __PHYSFS_platformGrabMutex(void *mutex)
{
    EnterCriticalSection((LPCRITICAL_SECTION) mutex); // <-- here 
    return 1;
} /* __PHYSFS_platformGrabMutex */

我在这里做错什么了吗?这是库的问题还是我的操作系统的问题?我错过了PhysFS的构建步骤中的某些内容吗?

编辑:我注意到我读错了PHYSFS_init()的返回值,但是现在我更加困惑了,因为PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode())返回“无错误”,这是怎么回事?

1 个答案:

答案 0 :(得分:0)

显然,Windows 10的PhysFS中存在一个错误,该错误禁止PHYSFS_init()的正确执行。 将phsyfs_platform_windows.c的578行更改为

rc = pGetDir(accessToken, NULL, &psize);

和库的重新编译为我解决了这个问题:/

https://hg.icculus.org/icculus/physfs/rev/ece6769c0676

https://discourse.libsdl.org/t/resolved-physfs-exception-thrown/25697/11