Ignore:
Timestamp:
Dec 22, 2006, 7:01:38 PM (19 years ago)
Author:
bird
Message:

made it compile again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrRdrFile.c

    r2883 r2893  
    10741074    if ((uintptr_t)pszFilename >= 0x20000000)
    10751075    {
    1076         char *psz = (char *)kLdrHlpAllocA(cchFilename + 1);
     1076        char *psz;
     1077        cchFilename = kLdrHlpStrLen(szFilename);
     1078        psz = (char *)kLdrHlpAllocA(cchFilename + 1);
    10771079        kLdrHlpMemCopy(psz, pszFilename, cchFilename + 1);
    10781080        pszFilename = psz;
Note: See TracChangeset for help on using the changeset viewer.