Changeset 1039 for trunk/dll/autoview.c
- Timestamp:
- Jul 6, 2008, 12:16:21 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/autoview.c
r1038 r1039 415 415 WinSetWindowText(hwndAutoview, obuff); 416 416 } 417 xfree(obuff, pszSrcFile, __LINE__);417 free(obuff); 418 418 } 419 xfree(ibuff, pszSrcFile, __LINE__);419 free(ibuff); 420 420 } 421 421 DosClose(handle); … … 510 510 if (*pszBuf) 511 511 WinSetWindowText(hwndAutoview, pszBuf); 512 xfree(pszBuf, pszSrcFile, __LINE__);512 free(pszBuf); 513 513 } 514 514 } … … 544 544 rc = DosQueryPathInfo((CHAR *)mp1, FIL_QUERYEASFROMLIST, 545 545 (PVOID) & eaop, (ULONG) sizeof(EAOP2)); 546 xfree(pgealist, pszSrcFile, __LINE__);546 free(pgealist); 547 547 if (!rc) { 548 548 pfea = &eaop.fpFEA2List->list[0]; … … 594 594 } 595 595 WinSetWindowText(hwndAutoMLE, pszBuf); 596 xfree(pszBuf, pszSrcFile, __LINE__);596 free(pszBuf); 597 597 } 598 598 } … … 608 608 MLEsetreadonly(hwndAutoMLE, FALSE); 609 609 } 610 xfree(pfealist, pszSrcFile, __LINE__);610 free(pfealist); 611 611 } 612 612 } 613 613 } 614 614 } 615 xfree((CHAR *)mp1, pszSrcFile, __LINE__);615 free((CHAR *)mp1); 616 616 # ifdef FORTIFY 617 617 Fortify_LeaveScope(); … … 798 798 PutComments(hwnd, currfile, ea); 799 799 PostMsg(hwnd, WM_COMMAND, MPFROM2SHORT(IDM_RESCAN, 0), MPVOID); 800 xfree(ea, pszSrcFile, __LINE__);800 free(ea); 801 801 # ifdef FORTIFY 802 802 Fortify_LeaveScope(); … … 851 851 stopflag++; 852 852 if (!PostMsg(hwndAutoObj, UM_LOADFILE, MPFROMP(cf), MPVOID)) 853 xfree(cf, pszSrcFile, __LINE__);853 free(cf); 854 854 # ifdef FORTIFY 855 855 Fortify_LeaveScope();
Note:
See TracChangeset
for help on using the changeset viewer.