Changeset 7961 for trunk/src/kernel32/wprocess.cpp
- Timestamp:
- Feb 19, 2002, 1:54:59 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/wprocess.cpp
r7952 r7961 1 /* $Id: wprocess.cpp,v 1.14 7 2002-02-18 22:15:53 phallerExp $ */1 /* $Id: wprocess.cpp,v 1.148 2002-02-19 12:51:53 sandervl Exp $ */ 2 2 3 3 /* … … 241 241 winteb->o.odin.threadinfo.dwType = SECTYPE_PROCESS | SECTYPE_INITIALIZED; 242 242 243 if (NULL != RtlAllocateAndInitializeSid) 244 RtlAllocateAndInitializeSid(&sidIdAuth, 1, 0, 0, 0, 0, 0, 0, 0, 0, &winteb->o.odin.threadinfo.SidUser.User.Sid); 245 243 if (NULL != RtlAllocateAndInitializeSid) { 244 RtlAllocateAndInitializeSid(&sidIdAuth, 1, 0, 0, 0, 0, 0, 0, 0, 0, &winteb->o.odin.threadinfo.SidUser.User.Sid); 245 } 246 else DebugInt3(); 247 246 248 winteb->o.odin.threadinfo.SidUser.User.Attributes = 0; //????????? 247 249 … … 249 251 winteb->o.odin.threadinfo.pTokenGroups->GroupCount = 1; 250 252 251 if (NULL != RtlAllocateAndInitializeSid) 252 RtlAllocateAndInitializeSid(&sidIdAuth, 1, 0, 0, 0, 0, 0, 0, 0, 0, &winteb->o.odin.threadinfo.PrimaryGroup.PrimaryGroup); 253 if (NULL != RtlAllocateAndInitializeSid) { 254 RtlAllocateAndInitializeSid(&sidIdAuth, 1, 0, 0, 0, 0, 0, 0, 0, 0, &winteb->o.odin.threadinfo.PrimaryGroup.PrimaryGroup); 255 } 256 else DebugInt3(); 253 257 254 258 winteb->o.odin.threadinfo.pTokenGroups->Groups[0].Sid = winteb->o.odin.threadinfo.PrimaryGroup.PrimaryGroup; … … 1573 1577 // Wrong: in an ODIN32-LX environment, just 1574 1578 // assume a fake handle 1575 hMod = 0xffffffff;1579 hMod = -1; 1576 1580 } 1577 1581 }
Note:
See TracChangeset
for help on using the changeset viewer.