Changeset 1063 for trunk/dll/treecnr.c
- Timestamp:
- Jul 11, 2008, 5:33:36 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/treecnr.c
r1047 r1063 785 785 else { 786 786 WORKER *wk; 787 # ifdef FORTIFY788 Fortify_EnterScope();789 # endif787 # ifdef FORTIFY 788 Fortify_EnterScope(); 789 # endif 790 790 wk = xmallocz(sizeof(WORKER), pszSrcFile, __LINE__); 791 791 if (!wk) … … 803 803 GetPString(IDS_COULDNTSTARTTHREADTEXT)); 804 804 free(wk); 805 # ifdef FORTIFY806 Fortify_LeaveScope();807 # endif808 805 FreeListInfo((LISTINFO *) mp1); 809 806 } 810 807 } 808 # ifdef FORTIFY 809 Fortify_LeaveScope(); 810 # endif 811 811 } 812 812 } … … 821 821 else { 822 822 WORKER *wk; 823 # ifdef FORTIFY824 Fortify_EnterScope();825 # endif823 # ifdef FORTIFY 824 Fortify_EnterScope(); 825 # endif 826 826 wk = xmallocz(sizeof(WORKER), pszSrcFile, __LINE__); 827 827 if (!wk) … … 839 839 GetPString(IDS_COULDNTSTARTTHREADTEXT)); 840 840 free(wk); 841 # ifdef FORTIFY842 Fortify_LeaveScope();843 # endif844 841 FreeListInfo((LISTINFO *) mp1); 845 842 } 846 843 } 844 # ifdef FORTIFY 845 Fortify_LeaveScope(); 846 # endif 847 847 } 848 848 } … … 860 860 UM_CLOSE, MPFROMLONG(dcd->dontclose != FALSE), MPVOID); 861 861 free(dcd); 862 # ifdef FORTIFY863 Fortify_LeaveScope();864 # endif862 # ifdef FORTIFY 863 Fortify_LeaveScope(); 864 # endif 865 865 WinSetWindowPtr(dcd->hwndCnr, QWL_USER, NULL); 866 866 } … … 2761 2761 LISTINFO *li; 2762 2762 ULONG action = UM_ACTION; 2763 # ifdef FORTIFY2764 Fortify_EnterScope();2765 # endif2763 # ifdef FORTIFY 2764 Fortify_EnterScope(); 2765 # endif 2766 2766 li = xmallocz(sizeof(LISTINFO), pszSrcFile, __LINE__); 2767 2767 if (li) { … … 2771 2771 if (!li->list || !li->list[0]) { 2772 2772 free(li); 2773 # ifdef FORTIFY2774 Fortify_LeaveScope();2775 # endif2773 # ifdef FORTIFY 2774 Fortify_LeaveScope(); 2775 # endif 2776 2776 break; 2777 2777 } … … 2996 2996 } 2997 2997 if (hwndFrame && hwndClient) { 2998 # ifdef FORTIFY2999 Fortify_EnterScope();3000 # endif2998 # ifdef FORTIFY 2999 Fortify_EnterScope(); 3000 # endif 3001 3001 dcd = xmallocz(sizeof(DIRCNRDATA), pszSrcFile, __LINE__); 3002 3002 if (!dcd) { … … 3083 3083 PostMsg(hwndClient, WM_CLOSE, MPVOID, MPVOID); 3084 3084 free(dcd); 3085 # ifdef FORTIFY3086 Fortify_LeaveScope();3087 # endif3085 # ifdef FORTIFY 3086 Fortify_LeaveScope(); 3087 # endif 3088 3088 hwndFrame = (HWND) 0; 3089 3089 }
Note:
See TracChangeset
for help on using the changeset viewer.