Changeset 1544 for trunk/dll/worker.c
- Timestamp:
- Sep 30, 2010, 3:00:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/worker.c
r1498 r1544 378 378 break; 379 379 } 380 in = _fsopen(wk->li->list[x], moder, SH_DENYWR);380 in = xfsopen(wk->li->list[x], moder, SH_DENYWR, pszSrcFile, __LINE__, TRUE); 381 381 if (!in) { 382 382 if (saymsg(MB_ENTERCANCEL, … … 388 388 } 389 389 else { 390 out = _fsopen(wk->li->targetpath, modew, SH_DENYWR); 390 out = xfsopen(wk->li->targetpath, modew, SH_DENYWR, 391 pszSrcFile, __LINE__, TRUE); 391 392 if (out) { 392 393 fseek(out, 0L, SEEK_END); … … 1167 1168 1168 1169 FILE *fp; 1169 CHAR szTempFile[CCHMAXPATH]; 1170 CHAR szTempFile[CCHMAXPATH]; 1171 CHAR *modew = "w"; 1170 1172 1171 1173 BldFullPathName(szTempFile, pTmpDir, PCSZ_FM2PLAYTEMP); 1172 fp = xfopen(szTempFile, "w", pszSrcFile, __LINE__);1174 fp = xfopen(szTempFile, modew, pszSrcFile, __LINE__, FALSE); 1173 1175 if (fp) { 1174 1176 fprintf(fp, "%s", ";AV/2-built FM2Play listfile\n");
Note:
See TracChangeset
for help on using the changeset viewer.