Ignore:
Timestamp:
Apr 16, 2001, 10:31:46 AM (24 years ago)
Author:
sandervl
Message:

Fix for LoadLibrary(Ex)W (wrong free call)

File:
1 edited

Legend:

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

    r5448 r5516  
    1 /* $Id: wprocess.cpp,v 1.117 2001-04-02 22:51:58 sandervl Exp $ */
     1/* $Id: wprocess.cpp,v 1.118 2001-04-16 08:31:46 sandervl Exp $ */
    22
    33/*
     
    565565    dprintf(("KERNEL32: LoadLibraryW(%s) returns 0x%x",
    566566             pszAsciiLibFile, hDll));
    567     free(pszAsciiLibFile);
     567    FreeAsciiString(pszAsciiLibFile);
    568568
    569569    return hDll;
     
    10331033    dprintf(("KERNEL32: LoadLibraryExW(%s, 0x%x, 0x%x) returns 0x%x",
    10341034             pszAsciiLibFile, hFile, dwFlags, hDll));
    1035     free(pszAsciiLibFile);
     1035    FreeAsciiString(pszAsciiLibFile);
    10361036
    10371037    return hDll;
Note: See TracChangeset for help on using the changeset viewer.