Ignore:
Timestamp:
Oct 3, 2000, 7:28:32 PM (25 years ago)
Author:
sandervl
Message:

misc updates + fixes

File:
1 edited

Legend:

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

    r4003 r4407  
    1 /* $Id: windlllx.cpp,v 1.14 2000-08-12 16:58:39 sandervl Exp $ */
     1/* $Id: windlllx.cpp,v 1.15 2000-10-03 17:28:31 sandervl Exp $ */
    22
    33/*
     
    179179}
    180180//******************************************************************************
     181//Returns reference count or -1 if load failed (PE loader only!)
    181182//******************************************************************************
    182183#ifdef DEBUG
     
    216217                item = loadedDlls.getNext(item);
    217218        }
    218         if(attachProcess() == 0)
    219                 return 0;
     219        if(attachProcess() == 0) {
     220                dprintf(("WARNING: Dll %s refused to be loaded; aborting", getName()));
     221                return -1;
     222        }
    220223  }
    221224  return ret; 
Note: See TracChangeset for help on using the changeset viewer.