Changeset 1079 for trunk/dll/tools.c
- Timestamp:
- Jul 19, 2008, 6:41:55 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/tools.c
r1039 r1079 34 34 #include "errutil.h" // Dos_Error... 35 35 #include "strutil.h" // GetPString 36 #include "fortify.h" 36 37 #include "fm3dll.h" 37 #include "fortify.h"38 38 39 39 #pragma data_seg(DATA1) … … 146 146 info = xmallocz(sizeof(TOOL), pszSrcFile, __LINE__); 147 147 if (info) { 148 # ifdef FORTIFY 149 Fortify_SetOwner(info, 1); 150 Fortify_SetScope(info, 1); 151 # endif 148 152 if (*help) { 149 153 literal(help); 150 if (*help) 154 if (*help) { 151 155 info->help = xstrdup(help, pszSrcFile, __LINE__); 156 # ifdef FORTIFY 157 Fortify_SetOwner(info->help, 1); 158 Fortify_SetScope(info->help, 1); 159 # endif 160 } 152 161 } 153 if (*text) 162 if (*text) { 154 163 info->text = xstrdup(text, pszSrcFile, __LINE__); 164 # ifdef FORTIFY 165 Fortify_SetOwner(info->text, 1); 166 Fortify_SetScope(info->text, 1); 167 # endif 168 } 155 169 info->flags = (atoi(flagstr) & (~(T_TEXT | T_EMPHASIZED))); 156 170 info->id = (USHORT) atoi(idstr);
Note:
See TracChangeset
for help on using the changeset viewer.