Ignore:
Timestamp:
Apr 15, 2000, 12:35:29 AM (25 years ago)
Author:
sandervl
Message:

GetFileAttributes, pe loader & command line fixes

File:
1 edited

Legend:

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

    r3059 r3375  
    1 /* $Id: windlllx.cpp,v 1.9 2000-03-09 19:03:21 sandervl Exp $ */
     1/* $Id: windlllx.cpp,v 1.10 2000-04-14 22:35:27 sandervl Exp $ */
    22
    33/*
     
    3030#include <windlllx.h>
    3131#include "winexepe2lx.h"
     32#include "winexepeldr.h"
    3233#include <odinlx.h>
    3334#include "oslibmisc.h"
     
    6061        return FALSE;
    6162   }
    62    if(fPe2Lx) {
     63   if(!fPeLoader) {
    6364        windll->AddRef();
    6465
     
    121122   //Don't proceed for pe2lx/win32k (os/2 dll unload dependency bug)
    122123   //Don't do it either after ExitProcess has been called
    123    if(fPe2Lx || WinExe == NULL)
     124   if(!fPeLoader || WinExe == NULL)
    124125        return TRUE;
    125126
     
    194195#endif
    195196
    196   if(fPe2Lx)
     197  if(!fPeLoader)
    197198        return ret;
    198199
Note: See TracChangeset for help on using the changeset viewer.