Ignore:
Timestamp:
Mar 4, 2000, 8:52:37 PM (25 years ago)
Author:
sandervl
Message:

DosOpen (file handle error) & dll destruction bugfixes

File:
1 edited

Legend:

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

    r2802 r3005  
    1 /* $Id: winexebase.cpp,v 1.5 2000-02-16 14:22:11 sandervl Exp $ */
     1/* $Id: winexebase.cpp,v 1.6 2000-03-04 19:52:36 sandervl Exp $ */
    22
    33/*
     
    5959Win32ExeBase::~Win32ExeBase()
    6060{
     61  //First delete all dlls that were loaded by the exe or dlls
     62  //Then delete all dlls loaded by LoadLibrary (to avoid that we
     63  //delete some dlls before the dll, that loaded it, is destroyed)
    6164  Win32DllBase::deleteAll();
     65  Win32DllBase::deleteAll(TRUE);
     66
    6267  WinExe = NULL;
    6368  if(cmdLineA)
Note: See TracChangeset for help on using the changeset viewer.