IFileOpenDialog访问冲突

时间:2017-12-31 00:57:18

标签: c++ windows winapi com access-violation

我正在使用Windows 7 64位和Visual Studio C ++ 2017社区。我正在尝试使用IFileOpenDialog创建一个Windows打开文件对话框,但在程序结束时我不断收到这两个访问冲突错误:

Exception thrown at 0x00000000771ED1CB (ntdll.dll) in p.exe: 0xC0000005: Access violation reading location 0x0000000000000074.

Exception thrown at 0x00000000771DDC9D (ntdll.dll) in p.exe: 0xC0000005: Access violation reading location 0x0000000000000074.

在尝试调试访问冲突时,我对所有内容进行了评论并从Microsoft's online example复制了代码,但错误不会消失。它似乎是由pFileOpen->Show(NULL);电话引起的。但是,我最终创建了一个新项目,并将相同的代码放入其中,瞧,它有效!这就是示例:

#include <windows.h>
#include <shobjidl.h> 

int main()
{
    HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | 
        COINIT_DISABLE_OLE1DDE);
    if (SUCCEEDED(hr))
    {
        IFileOpenDialog *pFileOpen;

        // Create the FileOpenDialog object.
        hr = CoCreateInstance(CLSID_FileOpenDialog, NULL, CLSCTX_ALL, 
                IID_IFileOpenDialog, reinterpret_cast<void**>(&pFileOpen));

        if (SUCCEEDED(hr))
        {
            // Show the Open dialog box.
            hr = pFileOpen->Show(NULL); <-------**Culprit**

            // Get the file name from the dialog box.
            if (SUCCEEDED(hr))
            {
                IShellItem *pItem;
                hr = pFileOpen->GetResult(&pItem);
                if (SUCCEEDED(hr))
                {
                    PWSTR pszFilePath;
                    hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &pszFilePath);

                    // Display the file name to the user.
                    if (SUCCEEDED(hr))
                    {
                        MessageBox(NULL, pszFilePath, L"File Path", MB_OK);
                        CoTaskMemFree(pszFilePath);
                    }
                    pItem->Release();
                }
            }
            pFileOpen->Release();
        }
        CoUninitialize();
    }
    return 0;
}

所以,我查看了两个项目的属性页面,因为我原来的项目已经链接了GLFW和GLEW库,所以也许他们应该受到责备。一旦我删除它们并确保两个属性页看起来都一样(例如:它们包含相同的库),原始项目中的错误就不会消失。

如果有人知道为什么会发生这种情况,我们将不胜感激。

另请注意,这并不妨碍程序运行,我只是想摆脱它。

1 个答案:

答案 0 :(得分:-2)

你是否在debug-&gt; windows-&gt;下检查了winc3组中的异常设置下的0xc0000005异常?如果我确实已经检查过,我只会得到您描述的行为。特别是如果我查看调用堆栈,则异常在ValidateTreeItem中。 如果您确实为0xC0000005启用了break on throw,我不知道有什么方法可以不获得该行为。