激活任何输入字段时的UWP访问冲突异常

时间:2016-10-28 14:43:23

标签: c# visual-studio uwp windows-10-universal windows-10-mobile

我的应用程序发生了一些奇怪的事情。

Windows 10 UWP应用程序在PC和某些手机上运行良好。但是在我的lumia 730(带有最新的预览版本)和一些我的客户应用程序的设备上,当您尝试激活任何输入字段时,应用程序崩溃。

Application "[7376] <AppName>.exe" has terminated with code -1073741819 (0xc0000005) 'Access violation'.

没有任何堆栈跟踪和其他错误消息。我如何调试错误并找到麻烦?

UPD:Windows认证套件说一切都很好

UPD2:在Windows 10 build 14393的模拟器中我遇到了同样的麻烦

UPD3:我确实打开了机器代码调试并加载了pdb文件。 现在我在这些行上的wrl \ client.h中有一个错误:

// query for U interface
    template<typename U>
    HRESULT As(_Inout_ Details::ComPtrRef<ComPtr<U>> p) const throw()
    {
        return ptr_->QueryInterface(__uuidof(U), p);
    }

有什么想法吗?

0 个答案:

没有答案