Commit 6c8259fb authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

ole32: Avoid a warning for VT_FILETIME in PropVariantCopy.

parent bd9ba7ec
......@@ -2690,6 +2690,8 @@ HRESULT WINAPI PropVariantCopy(PROPVARIANT *pvarDest, /* [out] */
switch(pvarSrc->vt)
{
case VT_FILETIME:
break;
case VT_STREAM:
case VT_STREAMED_OBJECT:
case VT_STORAGE:
......
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