Commit a7545791 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

advapi32: Added FIXME about an unsupported argument and initialize its value.

parent 5935e950
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment