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:
Jacek Caban 2015-10-16 12:59:41 +02:00 committed by Alexandre Julliard
parent 5935e9509b
commit a754579159
1 changed files with 12 additions and 0 deletions

View File

@ -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 );