Changeset 1743 for trunk/dll/init.c
- Timestamp:
- Feb 24, 2014, 1:37:51 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/init.c
r1739 r1743 122 122 22 Feb 14 GKY Cleanup of readonly check code suppress spurious error on blocked directory 123 123 delete and eliminated the check on additional temp file deletes 124 23 Feb 14 JBS Ticket #515: Corrected a mis-coded call to strtol which was causing the traps 125 described in this ticket. (Also changed it to strtoul.) 124 126 125 127 ***********************************************************************/ … … 794 796 if (p) { 795 797 p++; 796 ul = strtol(p, &p + 2, 16);798 ul = strtoul(p, NULL, 16); 797 799 GetDosPgmName(ul, temp); 798 800 if (!strstr(temp, "FM/2") && … … 1165 1167 fAutoAddDirs = fUseNewViewer = fDataToFore = fDataShowDrives = fDataMin = 1166 1168 fSplitStatus = fDragndropDlg = fQuickArcFind = fKeepCmdLine = 1167 fMoreButtons = fDrivebar = fCollapseFirst = fSwitchTree = 1169 fMoreButtons = fDrivebar = fCollapseFirst = fSwitchTree = 1168 1170 fSwitchTreeExpand = fNoSearch = fCustomFileDlg = fOtherHelp = 1169 1171 fSaveMiniCmds = fUserComboBox = fFM2Deletes = fConfirmTarget = … … 1258 1260 * one or more miniapp but not to FM/2 1259 1261 */ 1260 size = sizeof(BOOL); 1262 size = sizeof(BOOL); 1261 1263 PrfQueryProfileData(fmprof, realappname, "SeparateParms", &fAppSeparateSettings, &size); 1262 1264 if (!fAppSeparateSettings)
Note:
See TracChangeset
for help on using the changeset viewer.