Changeset 7961


Ignore:
Timestamp:
Feb 19, 2002, 1:54:59 PM (24 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r7957 r7961  
    1 /* $Id: changelog,v 1.1987 2002-02-19 12:22:16 sandervl Exp $ */
     1/* $Id: changelog,v 1.1988 2002-02-19 12:54:59 sandervl Exp $ */
    22
    33 2002-02-19: Sander van Leeuwen <sandervl@xs4all.nl>
    4     - KERNEL32: o Added support for Russian country code
     4    - KERNEL32: o Added support for Russian country code + other countries
     5    - OLE32:    o Removed back unnecessary changes
     6    - SHELL32:  o compile fix for SHBrowseForFolderW (due to recent header changes)
    57
    68 2002-02-18: Patrick Haller <patrick.haller@innotek.de>
  • trunk/src/kernel32/wprocess.cpp

    r7952 r7961  
    1 /* $Id: wprocess.cpp,v 1.147 2002-02-18 22:15:53 phaller Exp $ */
     1/* $Id: wprocess.cpp,v 1.148 2002-02-19 12:51:53 sandervl Exp $ */
    22
    33/*
     
    241241    winteb->o.odin.threadinfo.dwType = SECTYPE_PROCESS | SECTYPE_INITIALIZED;
    242242 
    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
    246248    winteb->o.odin.threadinfo.SidUser.User.Attributes = 0; //?????????
    247249
     
    249251    winteb->o.odin.threadinfo.pTokenGroups->GroupCount = 1;
    250252 
    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();
    253257 
    254258    winteb->o.odin.threadinfo.pTokenGroups->Groups[0].Sid = winteb->o.odin.threadinfo.PrimaryGroup.PrimaryGroup;
     
    15731577          // Wrong: in an ODIN32-LX environment, just
    15741578          // assume a fake handle
    1575           hMod = 0xffffffff;
     1579          hMod = -1;
    15761580        }
    15771581    }
Note: See TracChangeset for help on using the changeset viewer.