Ignore:
Timestamp:
Oct 22, 2006, 8:21:04 PM (19 years ago)
Author:
bird
Message:

Lx header. renaming some helpers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrRdrFile.c

    r2826 r2828  
    352352    if ((uintptr_t)pszFilename >= 0x20000000)
    353353    {
    354         char *psz = (char *)kLdrAllocA(cchFilename + 1);
    355         kLdrMemCopy(psz, pszFilename, cchFilename + 1);
     354        char *psz = (char *)kLdrHlpAllocA(cchFilename + 1);
     355        kLdrHlpMemCopy(psz, pszFilename, cchFilename + 1);
    356356        pszFilename = psz;
    357357    }
     
    404404     * Allocate the reader instance.
    405405     */
    406     cchFilename = kLdrStrLen(pszFilename);
     406    cchFilename = kLdrHlpStrLen(pszFilename);
    407407    pRdrFile = (PKLDRRDRFILE)kldrHlpAlloc(sizeof(*pRdrFile) + cchFilename);
    408408    if (!pRdrFile)
     
    427427    pRdrFile->File = File;
    428428    pRdrFile->off = 0;
    429     kLdrMemCopy(&pRdrFile->szFilename[0], pszFilename, cchFilename + 1);
     429    kLdrHlpMemCopy(&pRdrFile->szFilename[0], pszFilename, cchFilename + 1);
    430430
    431431    *ppRdr = &pRdrFile->Core;
Note: See TracChangeset for help on using the changeset viewer.