advapi32: Added FIXME about an unsupported argument and initialize its value.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5935e9509b
commit
a754579159
|
@ -902,6 +902,12 @@ LSTATUS WINAPI RegQueryInfoKeyW( HKEY hkey, LPWSTR class, LPDWORD class_len, LPD
|
|||
if (max_data) *max_data = info->MaxValueDataLen;
|
||||
if (modif) *modif = *(FILETIME *)&info->LastWriteTime;
|
||||
|
||||
if (security)
|
||||
{
|
||||
FIXME( "security argument not supported.\n");
|
||||
*security = 0;
|
||||
}
|
||||
|
||||
done:
|
||||
if (buf_ptr != buffer) heap_free( buf_ptr );
|
||||
return RtlNtStatusToDosError( status );
|
||||
|
@ -1091,6 +1097,12 @@ LSTATUS WINAPI RegQueryInfoKeyA( HKEY hkey, LPSTR class, LPDWORD class_len, LPDW
|
|||
if (max_data) *max_data = info->MaxValueDataLen;
|
||||
if (modif) *modif = *(FILETIME *)&info->LastWriteTime;
|
||||
|
||||
if (security)
|
||||
{
|
||||
FIXME( "security argument not supported.\n");
|
||||
*security = 0;
|
||||
}
|
||||
|
||||
done:
|
||||
if (buf_ptr != buffer) heap_free( buf_ptr );
|
||||
return RtlNtStatusToDosError( status );
|
||||
|
|
Loading…
Reference in New Issue