Changeset 1017 for trunk/dll/objcnr.c
- Timestamp:
- May 26, 2008, 5:02:59 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/objcnr.c
r1009 r1017 40 40 #include "strutil.h" // GetPString 41 41 #include "fm3dll.h" 42 43 #include "fortify.h" 42 44 43 45 typedef struct … … 235 237 MPVOID, MPVOID); 236 238 xfree(dirsize, pszSrcFile, __LINE__); 239 # ifdef FORTIFY 240 Fortify_LeaveScope(); 241 # endif 237 242 } 238 243 … … 267 272 { 268 273 DIRSIZE *dirsize; 269 274 # ifdef FORTIFY 275 Fortify_EnterScope(); 276 # endif 270 277 dirsize = xmalloc(sizeof(DIRSIZE), pszSrcFile, __LINE__); 271 278 if (!dirsize) { … … 280 287 Runtime_Error(pszSrcFile, __LINE__, 281 288 GetPString(IDS_COULDNTSTARTTHREADTEXT)); 282 xfree(dirsize, pszSrcFile, __LINE__); 289 xfree(dirsize, pszSrcFile, __LINE__); 290 # ifdef FORTIFY 291 Fortify_LeaveScope(); 292 # endif 283 293 WinDismissDlg(hwnd, 0); 284 294 break;
Note:
See TracChangeset
for help on using the changeset viewer.