The Functionality For Opening a File Dialog Box Using the GetOpenFileNameW Is Broken

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...
 

Similar threads

B
Replies
0
Views
479
Brandon LeBlanc
B
D
Replies
0
Views
881
Dona Sarkar and Brandon LeBlanc
D
S
Replies
0
Views
625
Steven Sinofsky
S
Back
Top Bottom