Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More simple and clean code. |
---|---|
Timelines: | family | ancestors | descendants | both | FixSaveAsDlg |
Files: | files | file ages | folders |
SHA1: |
953f8adc23072834d19286f6881228c8 |
User & Date: | johnfound 2017-12-22 20:57:28.649 |
Context
2017-12-30
| ||
09:03 | Merged with FixSaveAsDlg branch in order to fix a bug, manifesting only in Win10. check-in: 79923f736e user: johnfound tags: trunk | |
2017-12-22
| ||
20:57 | More simple and clean code. Closed-Leaf check-in: 953f8adc23 user: johnfound tags: FixSaveAsDlg | |
20:37 | Fixing a bug in the SaveAs dialog, causing crashes in Windows 10. check-in: c85695b2df user: johnfound tags: FixSaveAsDlg | |
Changes
Changes to source/opendialog.asm.
︙ | ︙ | |||
231 232 233 234 235 236 237 | xor eax, eax stosd stdcall FreeMem ; from the stack pop edi | < < > | 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | xor eax, eax stosd stdcall FreeMem ; from the stack pop edi mov eax, [.hInitialDir] test eax, eax jz .initial_dir_ok stdcall utf8ToWideChar, eax .initial_dir_ok: mov [.opn.lpstrInitialDir], eax mov esi, eax ; in order to free it at the end. xor edx, edx mov [.opn.lStructSize], sizeof.OPENFILENAME mov eax, [.hOwner] mov [.opn.hwndOwner], eax |
︙ | ︙ |