Ignore:
Timestamp:
Feb 21, 2010, 5:30:47 PM (16 years ago)
Author:
rlwalsh
Message:

eliminate VACPP warning & info msgs - see Ticket #1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/advapi32/security.c

    r21325 r21353  
    10921092
    10931093    sz = 14 + pisid->SubAuthorityCount * 11;
    1094     str = LocalAlloc( 0, sz*sizeof(WCHAR) );
     1094    str = (LPWSTR)LocalAlloc( 0, sz*sizeof(WCHAR) );
    10951095    sprintfW( str, fmt, pisid->Revision, MAKELONG(
    10961096     MAKEWORD( pisid->IdentifierAuthority.Value[5],
     
    11201120
    11211121    len = WideCharToMultiByte( CP_ACP, 0, wstr, -1, NULL, 0, NULL, NULL );
    1122     str = LocalAlloc( 0, len );
     1122    str = (LPSTR)LocalAlloc( 0, len );
    11231123    WideCharToMultiByte( CP_ACP, 0, wstr, -1, str, len, NULL, NULL );
    1124     LocalFree( wstr );
     1124    LocalFree( (HANDLE)wstr );
    11251125
    11261126    *pstr = str;
Note: See TracChangeset for help on using the changeset viewer.