I don't know if this is related, but maybe ...
I'm writing an Qt app which does rudimentary control the VLC player. The app doesn't that much with the player. It only starts it and closes it after some time. To close the player in Qt I use the command "QProcess::terminate" which sends on Windows a WM_CLOSE message to VLC-Player. In version 1.03 of the VLC-Player all works well. The Player closes as needed. With version 1.05 of the player, it crashes and doesn't close as needed. In stderr I see following output:
QEventDispatcherWin32::registerTimer: Failed to create a timer (Ungültiges Fensterhandle)
Since I have a german Windows, the log also tries german ... but it should look like this in english versions of Windows:
Ungültiges Fensterhandle = invalid window handle!
This log repeats ~100 times ... as long as I don't kill VLC-Player from the Task Manager.
This appears in WinXP 32 as well as in Windows Vista 64!
Best regards,
Jo2003