Changeset 1544 for trunk/dll/select.c
- Timestamp:
- Sep 30, 2010, 3:00:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/select.c
r1413 r1544 131 131 FILE *fp; 132 132 CHAR input[1024], *p; 133 134 fp = _fsopen(filename, "r", SH_DENYNO); 133 CHAR *moder = "r"; 134 135 fp = xfsopen(filename, moder, SH_DENYNO, pszSrcFile, __LINE__, TRUE); 135 136 if (fp) { 136 137 while (!feof(fp)) { … … 252 253 ULONG pos; 253 254 LONG len; 254 FILE *inputFile; 255 256 if ((inputFile = _fsopen(pci->pszFileName, "rb", SH_DENYNO)) != NULL) { 255 FILE *inputFile; 256 CHAR *moderb = "rb"; 257 258 if ((inputFile = xfsopen(pci->pszFileName, moderb, SH_DENYNO, 259 pszSrcFile, __LINE__, TRUE)) != NULL) { 257 260 pos = ftell(inputFile); 258 261 while (!feof(inputFile)) { … … 356 359 LONG len; 357 360 FILE *inputFile; 358 359 if ((inputFile = _fsopen(pci->pszFileName, "rb", SH_DENYNO)) != NULL) { 361 CHAR *moderb = "rb"; 362 363 if ((inputFile = xfsopen(pci->pszFileName, moderb, SH_DENYNO, 364 pszSrcFile, __LINE__, TRUE)) != NULL) { 360 365 pos = ftell(inputFile); 361 366 while (!feof(inputFile)) {
Note:
See TracChangeset
for help on using the changeset viewer.