Changeset 1078 for trunk/dll/command.c
- Timestamp:
- Jul 19, 2008, 6:08:02 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/command.c
r1039 r1078 24 24 29 Feb 08 GKY Changes to enable user settable command line length 25 25 29 Feb 08 GKY Use xfree where appropriate 26 18 Jul 08 SHL Add Fortify support 26 27 27 28 ***********************************************************************/ … … 355 356 info = xmallocz(sizeof(LINKCMDS), pszSrcFile, __LINE__); 356 357 if (info) { 358 # ifdef FORTIFY 359 Fortify_SetOwner(info, 1); 360 Fortify_SetScope(info, 1); 361 # endif 357 362 info->pszCmdLine = xstrdup(pszCmdLine, pszSrcFile, __LINE__); 358 363 info->title = xstrdup(title, pszSrcFile, __LINE__); … … 364 369 break; 365 370 } 371 # ifdef FORTIFY 372 Fortify_SetOwner(info->pszCmdLine, 1); 373 Fortify_SetScope(info->pszCmdLine, 1); 374 Fortify_SetOwner(info->title, 1); 375 Fortify_SetScope(info->title, 1); 376 # endif 366 377 if (!cmdhead) 367 378 cmdhead = info;
Note:
See TracChangeset
for help on using the changeset viewer.