Changeset 1786 for trunk/dll/dircnrs.c
- Timestamp:
- Aug 30, 2014, 10:03:35 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/dircnrs.c
r1778 r1786 86 86 02 Mar 14 GKY Speed up intial drive scans Ticket 528 87 87 26 Jun 14 SHL Rework DirObjWndProc UM_RESCAN to avoid hanging FM/2 Lite when tree hidden 88 30 Aug 14 GKY Add semaphore hmtxFiltering to prevent freeing dcd while filtering. Prevents 89 a trap when FM2 is shutdown while directory containers are still populating 88 90 89 91 ***********************************************************************/ … … 1210 1212 0, 1211 1213 0, 1212 SWP_RESTORE | SWP_SHOW | SWP_ACTIVATE | SWP_ZORDER); 1214 SWP_RESTORE | SWP_SHOW | SWP_ACTIVATE | SWP_ZORDER); 1215 DosRequestMutexSem(hmtxFiltering, SEM_INDEFINITE_WAIT); 1213 1216 FreeList(dcd->lastselection); 1214 1217 WinSetWindowPtr(dcd->hwndCnr, QWL_USER, NULL); // 13 Apr 10 SHL Set NULL before freeing dcd … … 1630 1633 } 1631 1634 // 2014-06-11 SHL fm/2 lite can get here before drive scan completes 1632 if (!fInitialDriveScan)1633 1635 //if (!fInitialDriveScan) // 2014-08-30 GKY This doesn't seem to be needed 1636 PostMsg(hwnd, UM_SETUP2, MPVOID, MPVOID); 1634 1637 } 1635 1638 else { … … 3522 3525 0, 3523 3526 0, 3524 SWP_RESTORE | SWP_SHOW | SWP_ACTIVATE | SWP_ZORDER); 3527 SWP_RESTORE | SWP_SHOW | SWP_ACTIVATE | SWP_ZORDER); 3528 DosRequestMutexSem(hmtxFiltering, SEM_INDEFINITE_WAIT); 3525 3529 FreeList(dcd->lastselection); 3526 3530 free(dcd);
Note:
See TracChangeset
for help on using the changeset viewer.