Mike McCormack : ole32: Avoid a warning for VT_FILETIME in PropVariantCopy.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Aug 14 14:10:24 CDT 2006


Module: wine
Branch: master
Commit: 6c8259fb317df923b9463e68be863e173600506c
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=6c8259fb317df923b9463e68be863e173600506c

Author: Mike McCormack <mike at 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:




More information about the wine-cvs mailing list