Changeset 8686


Ignore:
Timestamp:
Jun 15, 2002, 7:15:18 PM (23 years ago)
Author:
sandervl
Message:

LoadLibraryExA: expand library filename; might contain environment variables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/kernel32/wprocess.cpp

    r8648 r8686  
    1 /* $Id: wprocess.cpp,v 1.153 2002-06-11 16:36:54 sandervl Exp $ */
     1/* $Id: wprocess.cpp,v 1.154 2002-06-15 17:15:18 sandervl Exp $ */
    22
    33/*
     
    789789    }
    790790
     791    //Expand library filename; might contain environment variables
     792    //(such as %SystemDrive%)
     793    CHAR lpszExpandedLibFile[CCHMAXPATH];
     794    ExpandEnvironmentStringsA(lpszLibFile, lpszExpandedLibFile, sizeof(lpszExpandedLibFile));
     795    lpszLibFile = lpszExpandedLibFile;
    791796
    792797    /** @sketch
Note: See TracChangeset for help on using the changeset viewer.