Index: /trunk/src/VBox/GuestHost/SharedClipboard/ClipboardStreamImpl-win.cpp
===================================================================
--- /trunk/src/VBox/GuestHost/SharedClipboard/ClipboardStreamImpl-win.cpp	(revision 82494)
+++ /trunk/src/VBox/GuestHost/SharedClipboard/ClipboardStreamImpl-win.cpp	(revision 82495)
@@ -283,5 +283,5 @@
     if (pStatStg)
     {
-        RT_BZERO(pStatStg, sizeof(STATSTG));
+        RT_ZERO(*pStatStg);
 
         switch (dwFlags)
@@ -293,4 +293,7 @@
             case STATFLAG_DEFAULT:
             {
+                /** @todo r=bird: This is using the wrong allocator.  According to MSDN the
+                 * caller will pass this to CoTaskMemFree, so we should use CoTaskMemAlloc to
+                 * allocate it. */
                 int rc2 = RTStrToUtf16(m_strPath.c_str(), &pStatStg->pwcsName);
                 if (RT_FAILURE(rc2))
