Changeset 2707 for trunk/src


Ignore:
Timestamp:
Feb 10, 2000, 12:35:12 AM (26 years ago)
Author:
sandervl
Message:

EB: Pretend no debugger is active in NtQueryInformationProcess

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/nt.cpp

    r2327 r2707  
    1 /* $Id: nt.cpp,v 1.5 2000-01-05 19:37:29 sandervl Exp $ */
     1/* $Id: nt.cpp,v 1.6 2000-02-09 23:35:12 sandervl Exp $ */
    22
    33
     
    133133           ProcessInformationLength,
    134134           ReturnLength));
     135
     136  // fake application, no debugger is running :)
     137  if(ProcessInformationClass == ProcessDebugPort)
     138  {
     139    memset(ProcessInformation, 0, ProcessInformationLength);
     140    return TRUE;
     141  }
    135142
    136143  return 0;
Note: See TracChangeset for help on using the changeset viewer.