“无法初始化应用程序 0xc000005”

发布于 2024-09-07 07:15:54 字数 151 浏览 7 评论 0原文

我为 SFML 编写了一个包装器,如果需要的话,它可以让我替换游戏的渲染器。它起作用了。然后我进行了重构,虽然它仍在编译,但现在在运行已编译的可执行文件时出现“无法初始化应用程序 0xc000005”。

什么会导致这样的错误?谷歌没有帮助。我使用的是Windows XP。

I wrote a wrapper for SFML that would allow me to replace the renderer for my game if I needed to. It worked. Then I refactored and while it still compiles, I now get "unable to initialize application 0xc000005" when running the compiled executable.

What would cause such an error? Google was unhelpful. I'm using Windows XP.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

顾北清歌寒 2024-09-14 07:15:54

0xc000005ERROR_ACCESS_VIOLATION —— 你在某处有一个野指针。

0xc000005 is ERROR_ACCESS_VIOLATION -- you've got a wild pointer somewhere.

黑寡妇 2024-09-14 07:15:54

当我进行以下设置时,我偶尔会收到此错误:

应用程序链接到 X.lib,这会导致 X.dll 的动态加载
这会导致动态加载 Y.dll运行应用程序。

X.dll 与 Y.lib 链接,当 X.dll 位于路径中而不是 Y.dll 时,

I occasionally gotten this error when I have the following setup:

Application linked against X.lib, which causes a dynamic load of X.dll
X.dll linked against Y.lib, which causes a dynamic load of Y.dll

Run application when X.dll is in the path, but not Y.dll.

二手情话 2024-09-14 07:15:54

我相信您没有初始化 glew 并在代码中的某个地方使用了它。尝试将 glewInit(); 放在代码开头的某个位置。

I believe you didn't initialize glew and used it somewhere in your code. Try putting glewInit(); somewhere at start of your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文