This is a read-only archive of the Mumble forums.

This website archives and makes accessible historical state. It receives no updates or corrections. It is provided only to keep the information accessible as-is, under their old address.

For up-to-date information please refer to the Mumble website and its linked documentation and other resources. For support please refer to one of our other community/support channels.

Jump to content

I need help with an error


Cartnich
 Share

Recommended Posts

At least once a day when I use mumble, I will randomly get an error. If I ignore this error I can continue to use mumble, but as soon as I close the error window mumble closes also. Here is a screenshot of the error:

http://i.imgur.com/I5HO4zT.png

Can anyone explain what this error is?

Link to comment
Share on other sites

  • Administrators

Not sure what could cause this, but GlobalShortcutWin is the logic that handles keyboard shortcuts like the push to talk key logic.


That error seems to indicate that when Mumble tried to access a device through Windows, Windows returned an "unspecified" error.


Do you have any devices that may switch ready state, become inaccessible, or you regularly plug and unplug?

Do you have a fancy keyboard?

Could you try unplugging unnecessary devices and see if the problem still occurs, and report back?


---


My findings:


Code: GlobalShortcut_win.cpp L507


From your Screenshot, the return HRESULT is 80004005


The error returns are one of DIERR_DEVICENOTREG

DIERR_INVALIDPARAM

DIERR_NOINTERFACE

, DIERR_NOTINITIALIZED

, DIERR_OUTOFMEMORY.


Winerror.h defines for "unspecified error" #define E_FAIL _HRESULT_TYPEDEF_(0x80004005L)


DIERR_NOTINITIALIZED is constructed with MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, ERROR_NOT_READY)


1 << 31 | 7 << 16 | 21

Link to comment
Share on other sites

 Share

×
×
  • Create New...