S
Suzy Bolo
In the current update of Windows 10 when a program calls the GetOpenFileNameW function from the Comdlg32.lib library, it is not giving the expected behavior. It will open the file browser as expected, but then after a second, the file browser will freeze, then the program will crash. Can someone please look into this and see if there's some kind of bug in Windows causing it? If you want to recreate this issue, I have written the following extremely simple program to demonstrate it.:#include <windows.h>int main() { wchar_t Filename[500]; OPENFILENAMEW ofn; ZeroMemory(&ofn, sizeof(ofn)
Continue reading...
Continue reading...