Changeset 4658 for trunk/src/kernel32/windllbase.cpp
- Timestamp:
- Nov 21, 2000, 12:36:09 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/windllbase.cpp
r4545 r4658 1 /* $Id: windllbase.cpp,v 1.2 1 2000-10-30 16:38:54sandervl Exp $ */1 /* $Id: windllbase.cpp,v 1.22 2000-11-21 11:35:09 sandervl Exp $ */ 2 2 3 3 /* … … 387 387 WINEXCEPTION_FRAME exceptFrame; 388 388 USHORT sel; 389 T HDB *thdb;389 TEB *teb; 390 390 BOOL rc, fSetExceptionHandler; 391 391 … … 395 395 fAttachedToProcess = TRUE; 396 396 397 t hdb = GetThreadTHDB();398 fSetExceptionHandler = (!t hdb || thdb->teb_sel != GetFS());397 teb = GetThreadTEB(); 398 fSetExceptionHandler = (!teb || teb->teb_sel != GetFS()); 399 399 400 400 //Note: The Win32 exception structure references by FS:[0] is the same … … 440 440 } 441 441 else 442 if(t hdb) {443 if(t hdb->teb_sel != GetFS()) {442 if(teb) { 443 if(teb->teb_sel != GetFS()) { 444 444 dprintf(("Win32DllBase::attachProcess: FS was changed by dll entrypoint!!!!")); 445 445 DebugInt3();
Note:
See TracChangeset
for help on using the changeset viewer.