Module: wine Branch: master Commit: 6c8259fb317df923b9463e68be863e173600506c URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=6c8259fb317df923b9463e68...
Author: Mike McCormack mike@codeweavers.com Date: Mon Aug 14 18:30:16 2006 +0900
ole32: Avoid a warning for VT_FILETIME in PropVariantCopy.
---
dlls/ole32/ole2.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/ole32/ole2.c b/dlls/ole32/ole2.c index 31bc5f4..e04095a 100644 --- a/dlls/ole32/ole2.c +++ b/dlls/ole32/ole2.c @@ -2690,6 +2690,8 @@ HRESULT WINAPI PropVariantCopy(PROPVARIA
switch(pvarSrc->vt) { + case VT_FILETIME: + break; case VT_STREAM: case VT_STREAMED_OBJECT: case VT_STORAGE: