<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches">
    <title>gmane.comp.emulators.wine.patches</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115708"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115707"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115706"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115705"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115704"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115703"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115702"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115701"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115700"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115699"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115698"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115697"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115696"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115695"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115694"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115693"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115692"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115691"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115690"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115689"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115708">
    <title>[PATCH 2/2] user32: Don't release capture of child window whendisabling parent window.(try 4)</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115708</link>
    <description>&lt;pre&gt;Fixing bug http://bugs.winehq.org/show_bug.cgi?id=33542

---
 dlls/user32/tests/win.c | 4 ++--
 dlls/user32/win.c       | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c
index 2836882..fb32054 100644
--- a/dlls/user32/tests/win.c
+++ b/dlls/user32/tests/win.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -2987,13 +2987,13 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static void test_capture_3(HWND hwnd1, HWND hwnd2)
     ret = ReleaseCapture();
     ok (ret, "releasecapture did not return TRUE after second try.\n");
 
-    child = CreateWindowExA( 0, "button", NULL, WS_CHILD, 0, 0, 0, 0, hwnd1, 0, 0, NULL );
+    child = CreateWindowExA(0, "button", NULL, WS_CHILD, 0, 0, 0, 0, hwnd1, 0, 0, NULL);
     assert(child);
     SetCapture(child);
     check_wnd_state(hwnd1, hwnd1, hwnd1, child);
 
     EnableWindow(hwnd1, FALSE);
-    todo_wine ok(GetCapture() != NULL, "capture in child window should not be released.\n");
+    ok(GetCapture() != NULL, "capture in child window should not be released.\n");
 
     EnableWindow(hwnd&lt;/pre&gt;</description>
    <dc:creator>Guo Jian</dc:creator>
    <dc:date>2013-05-19T07:07:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115707">
    <title>[PATCH 1/2] user32/tests: Added capture test for child window whenparent window is disabled.(try 5)</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115707</link>
    <description>&lt;pre&gt;Hi,
This time the test is simplified and combined to test_capture_3. I found
it no need to test for WM_LBUTTONUP here once ensured it's captured.
Thank you.

---
 dlls/user32/tests/win.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/dlls/user32/tests/win.c b/dlls/user32/tests/win.c
index 37d210e..2836882 100644
--- a/dlls/user32/tests/win.c
+++ b/dlls/user32/tests/win.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -2965,6 +2965,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static void test_capture_2(void)
 static void test_capture_3(HWND hwnd1, HWND hwnd2)
 {
     BOOL ret;
+    HWND child;
 
     ShowWindow(hwnd1, SW_HIDE);
     ShowWindow(hwnd2, SW_HIDE);
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -2985,6 +2986,17 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static void test_capture_3(HWND hwnd1, HWND hwnd2)
     ok (ret, "releasecapture did not return TRUE.\n");
     ret = ReleaseCapture();
     ok (ret, "releasecapture did not return TRUE after second try.\n");
+
+    child = CreateWindowExA( 0, "button", NULL, WS_CHILD, 0, 0, 0, 0, hwnd1, 0, 0, NULL );
+    assert(child);
+    SetCapture(child);
+    check_wnd_state(hwnd1, hwnd1, hwnd1, child);
&lt;/pre&gt;</description>
    <dc:creator>Guo Jian</dc:creator>
    <dc:date>2013-05-19T07:07:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115706">
    <title>inetcpl.cpl: Add stub for LaunchConnectionDialog</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115706</link>
    <description>&lt;pre&gt;For Intel Beacon Mountain 0.5
---
 dlls/inetcpl.cpl/inetcpl.c        | 12 +++++++++++-
 dlls/inetcpl.cpl/inetcpl.cpl.spec |  2 +-
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/dlls/inetcpl.cpl/inetcpl.c b/dlls/inetcpl.cpl/inetcpl.c
index e11bf85..7a5ba07 100644
--- a/dlls/inetcpl.cpl/inetcpl.c
+++ b/dlls/inetcpl.cpl/inetcpl.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -212,11 +212,21 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; BOOL WINAPI LaunchInternetControlPanel(HWND parent)
 }
 
 /*********************************************************************
+ * LaunchConnectionDialog (inetcpl.&amp;lt; at &amp;gt;)
+ *
+ */
+BOOL WINAPI LaunchConnectionDialog(HWND hParent)
+{
+    FIXME("(%p): stub\n", hParent);
+    return FALSE;
+}
+
+/*********************************************************************
  * LaunchInternetControlPanel (inetcpl.&amp;lt; at &amp;gt;)
  *
  */
 BOOL WINAPI LaunchPrivacyDialog(HWND hParent)
 {
-    FIXME(": stub\n");
+    FIXME("(%p): stub\n", hParent);
     return FALSE;
 }
diff --git a/dlls/inetcpl.cpl/inetcpl.cpl.spec b/dlls/inetcpl.cpl/inetcpl.cpl.spec
index 2e59562..bd56ae9 &lt;/pre&gt;</description>
    <dc:creator>André Hentschel</dc:creator>
    <dc:date>2013-05-18T14:12:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115705">
    <title>[PATCH] ieframe: Add a IServiceProvider stub to IBindStatusCallback</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115705</link>
    <description>&lt;pre&gt;--
By by ... Detlef

---
 dlls/ieframe/navigate.c |   51 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/dlls/ieframe/navigate.c b/dlls/ieframe/navigate.c
index d730b10..65ab16d 100644
--- a/dlls/ieframe/navigate.c
+++ b/dlls/ieframe/navigate.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -40,6 +40,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; typedef struct {
     IBindStatusCallback  IBindStatusCallback_iface;
     IHttpNegotiate       IHttpNegotiate_iface;
     IHttpSecurity        IHttpSecurity_iface;
+    IServiceProvider     IServiceProvider_iface;
 
     LONG ref;
 
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -172,6 +173,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static HRESULT WINAPI BindStatusCallback_QueryInterface(IBindStatusCallback *ifa
     }else if(IsEqualGUID(&amp;amp;IID_IHttpSecurity, riid)) {
         TRACE("(%p)-&amp;gt;(IID_IHttpSecurity %p)\n", This, ppv);
         *ppv = &amp;amp;This-&amp;gt;IHttpSecurity_iface;
+    }else if(IsEqualGUID(&amp;amp;IID_IServiceProvider, riid)) {
+        TRACE("(%p)-&amp;gt;(IID_IServiceProvider %p)\n", This, ppv);
+        *ppv = &amp;amp;This-&amp;gt;IServiceProvider_iface;;
     }else {
         *ppv = N&lt;/pre&gt;</description>
    <dc:creator>Detlef Riekenberg</dc:creator>
    <dc:date>2013-05-18T13:11:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115704">
    <title>d3drm/tests: Fix compilation on systems that don't support namelessunions.</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115704</link>
    <description>&lt;pre&gt;---
 dlls/d3drm/tests/d3drm.c |   48 +++++++++++++++++++++++-----------------------
 1 file changed, 24 insertions(+), 24 deletions(-)

diff --git a/dlls/d3drm/tests/d3drm.c b/dlls/d3drm/tests/d3drm.c
index f82af5f..31ba044 100644
--- a/dlls/d3drm/tests/d3drm.c
+++ b/dlls/d3drm/tests/d3drm.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -856,41 +856,41 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static void test_Face(void)
         ok(count == 3, "Wrong number of vertices %d (must be 3)\n", count);
         ok(U1(v2[0]).x == U1(v1[0]).x, "Wrong component v2[0].x = %f (expected %f)\n",
            U1(v2[0]).x, U1(v1[0]).x);
-        ok(U1(v2[0]).y == U1(v1[0]).y, "Wrong component v2[0].y = %f (expected %f)\n",
-           U1(v2[0]).y, U1(v1[0]).y);
-        ok(U1(v2[0]).z == U1(v1[0]).z, "Wrong component v2[0].z = %f (expected %f)\n",
-           U1(v2[0]).z, U1(v1[0]).z);
+        ok(U2(v2[0]).y == U2(v1[0]).y, "Wrong component v2[0].y = %f (expected %f)\n",
+           U2(v2[0]).y, U2(v1[0]).y);
+        ok(U3(v2[0]).z == U3(v1[0]).z, "Wrong component v2[0].z = %f (expected %f)\n",
+      &lt;/pre&gt;</description>
    <dc:creator>Francois Gouget</dc:creator>
    <dc:date>2013-05-18T08:40:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115703">
    <title>msi: remove trailing spaces from command line property name</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115703</link>
    <description>&lt;pre&gt;
From 253bd4bbd0a91d11b632ad5959c455fca0db3be4 Mon Sep 17 00:00:00 2001
From: Daniel Jelinski &amp;lt;djelinski1&amp;lt; at &amp;gt;gmail.com&amp;gt;
Date: Fri, 17 May 2013 23:24:10 +0200
Subject: msi: remove trailing spaces from command line property name

Fixes bug 33115
---
 dlls/msi/action.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index f519f4b..e6422a7 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -332,6 +332,8 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; UINT msi_parse_command_line( MSIPACKAGE *package, LPCWSTR szCommandLine,
         len = ptr2 - ptr;
         if (!len) return ERROR_INVALID_COMMAND_LINE;
 
+        while (ptr[len - 1] == ' ') len--;
+
         prop = msi_alloc( (len + 1) * sizeof(WCHAR) );
         memcpy( prop, ptr, len * sizeof(WCHAR) );
         prop[len] = 0;
&lt;/pre&gt;</description>
    <dc:creator>Daniel Jeliński</dc:creator>
    <dc:date>2013-05-17T21:27:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115702">
    <title>[2/2]gdi32: GetGlyphIndices does substitute glyph</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115702</link>
    <description>&lt;pre&gt;---
 dlls/gdi32/freetype.c   | 2 ++
 dlls/gdi32/tests/font.c | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)



&lt;/pre&gt;</description>
    <dc:creator>Aric Stewart</dc:creator>
    <dc:date>2013-05-17T19:32:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115701">
    <title>[1/2]gdi32/test: update the vertical font to be a proper windowsvertical font</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115701</link>
    <description>&lt;pre&gt;---
 dlls/gdi32/tests/font.c       |   16 +-
 dlls/gdi32/tests/vertical.sfd | 1058 ++++++++++++++++++++++++++++++++++++-----
 dlls/gdi32/tests/vertical.ttf |  Bin 2372 -&amp;gt; 3560 bytes
 3 files changed, 958 insertions(+), 116 deletions(-)



&lt;/pre&gt;</description>
    <dc:creator>Aric Stewart</dc:creator>
    <dc:date>2013-05-17T19:32:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115700">
    <title>po: Improve German translation</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115700</link>
    <description>&lt;pre&gt;---
 po/de.po |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



&lt;/pre&gt;</description>
    <dc:creator>André Hentschel</dc:creator>
    <dc:date>2013-05-17T15:57:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115699">
    <title>[PATCH 2/2]vbscript: Implemented builtin function CBool</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115699</link>
    <description>&lt;pre&gt;Implement builtin CBool, with a introduction of helper function, return_bool.
And some tests are also added,  it has passed the testbot testing.

---
 dlls/vbscript/global.c      |   36 ++++++++++++++++++++++++++++++++++--
 dlls/vbscript/tests/api.vbs |    8 ++++++++
 2 files changed, 42 insertions(+), 2 deletions(-)


--

Regards,
Zhan Jianyu

&lt;/pre&gt;</description>
    <dc:creator>Zhan Jianyu</dc:creator>
    <dc:date>2013-05-17T14:53:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115698">
    <title>[PATCH 1/2]vbscript: Implemented builtin function CInt</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115698</link>
    <description>&lt;pre&gt;This patch is built based on Jaceks's newly-submitted patch:

    commit 48a862306288d69d3623d5ecdc0f5a5a40addafe
    ( vbscript: Round half to even in to_int)

Thanks, Jacek. :-)

With his patch, CInt could be implementd in a clean way, without
any introduced helper function.

This patch also add tests for any corner cases, and it has passed testbot's
testing.

---
 dlls/vbscript/global.c      |   14 ++++++++++++--
 dlls/vbscript/tests/api.vbs |   23 +++++++++++++++++++++++
 2 files changed, 35 insertions(+), 2 deletions(-)


--

Regards,
Zhan Jianyu

&lt;/pre&gt;</description>
    <dc:creator>Zhan Jianyu</dc:creator>
    <dc:date>2013-05-17T14:53:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115697">
    <title>[PATCH] wined3d: Only display a fixme when software processing isrequested in wined3d_device_set_software_vertex_processing. (try 2)</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115697</link>
    <description>&lt;pre&gt;Also remove fixme in wined3d_device_get_software_
vertex_processing since it does what it is supposed to do.

Try 2:
  - fix typo

&lt;/pre&gt;</description>
    <dc:creator>Christian Costa</dc:creator>
    <dc:date>2013-05-17T13:34:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115696">
    <title>[PATCH 5/5] mshtml: Added whitespace parser tests.</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115696</link>
    <description>&lt;pre&gt;---
 dlls/mshtml/tests/jstest.html | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)



&lt;/pre&gt;</description>
    <dc:creator>Jacek Caban</dc:creator>
    <dc:date>2013-05-17T10:35:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115695">
    <title>[PATCH 4/5] mshtml: Added parsing custom tag name tests.</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115695</link>
    <description>&lt;pre&gt;---
 dlls/mshtml/tests/jstest.html | 12 ++++++++++++
 1 file changed, 12 insertions(+)



&lt;/pre&gt;</description>
    <dc:creator>Jacek Caban</dc:creator>
    <dc:date>2013-05-17T10:34:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115694">
    <title>[PATCH 3/5] mshtml: Added more parser compatMode tests.</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115694</link>
    <description>&lt;pre&gt;---
 dlls/mshtml/tests/dom.c | 1 +
 1 file changed, 1 insertion(+)



&lt;/pre&gt;</description>
    <dc:creator>Jacek Caban</dc:creator>
    <dc:date>2013-05-17T10:34:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115693">
    <title>[PATCH 2/5] mshtml: Wine Gecko 2.21 release.</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115693</link>
    <description>&lt;pre&gt;---
 dlls/appwiz.cpl/addons.c |   6 +-
 dlls/mshtml/htmlelem2.c  |   8 +-
 dlls/mshtml/nsiface.idl  | 217
+++++++++++++++++++++++++++++++----------------
 dlls/mshtml/nsio.c       |  52 ++++++++++--
 dlls/mshtml/propbag.c    |   8 +-
 5 files changed, 204 insertions(+), 87 deletions(-)



&lt;/pre&gt;</description>
    <dc:creator>Jacek Caban</dc:creator>
    <dc:date>2013-05-17T10:34:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115692">
    <title>[PATCH 1/5] winegecko.php: Added 2.21 release.</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115692</link>
    <description>&lt;pre&gt;---
 winegecko.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)



&lt;/pre&gt;</description>
    <dc:creator>Jacek Caban</dc:creator>
    <dc:date>2013-05-17T10:34:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115691">
    <title>oledb32:  Support VT_NULL when converting to DBTYPE_BSTR</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115691</link>
    <description>&lt;pre&gt;Hi,


Changelog:
     oledb32:  Support VT_NULL when converting to DBTYPE_BSTR


Best Regards
  Alistair Leslie-Hughes
From: Alistair Leslie-Hughes &amp;lt;leslie_alistair&amp;lt; at &amp;gt;hotmail.com&amp;gt;
Date: Fri, 17 May 2013 12:21:12 +1000
Subject: [PATCH] Support VT_NULL when converting to DBTYPE_BSTR
To: wine-patches &amp;lt;wine-patches&amp;lt; at &amp;gt;winehq.org&amp;gt;

---
 dlls/oledb32/convert.c       | 19 +++++++++++++++----
 dlls/oledb32/tests/convert.c |  8 ++++++++
 2 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/dlls/oledb32/convert.c b/dlls/oledb32/convert.c
index 19f46f6..0cd9e53 100644
--- a/dlls/oledb32/convert.c
+++ b/dlls/oledb32/convert.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -534,10 +534,21 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static HRESULT WINAPI convert_DataConvert(IDataConvert* iface,
         }
         break;
         case DBTYPE_VARIANT:
-            VariantInit(&amp;amp;tmp);
-            if ((hr = VariantChangeType(&amp;amp;tmp, (VARIANT*)src, 0, VT_BSTR)) == S_OK)
-                *d = V_BSTR(&amp;amp;tmp);
-            break;
+        {
+            if(V_VT((VARIANT*)src) == VT_NULL)
+            {
+      &lt;/pre&gt;</description>
    <dc:creator>Alistair Leslie-Hughes</dc:creator>
    <dc:date>2013-05-17T07:38:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115690">
    <title>dbghelp: Add stub SymGetLineNextW64</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115690</link>
    <description>&lt;pre&gt;Hi,


Changelog:
     dbghelp: Add stub SymGetLineNextW64


Best Regards
  Alistair Leslie-Hughes
From: Alistair Leslie-Hughes &amp;lt;leslie_alistair&amp;lt; at &amp;gt;hotmail.com&amp;gt;
Date: Fri, 17 May 2013 10:26:32 +1000
Subject: [PATCH] Add stub SymGetLineNextW64
To: wine-patches &amp;lt;wine-patches&amp;lt; at &amp;gt;winehq.org&amp;gt;

---
 dlls/dbghelp/dbghelp.spec |  2 +-
 dlls/dbghelp/symbol.c     | 11 +++++++++++
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/dlls/dbghelp/dbghelp.spec b/dlls/dbghelp/dbghelp.spec
index 4772358..83542c0 100644
--- a/dlls/dbghelp/dbghelp.spec
+++ b/dlls/dbghelp/dbghelp.spec
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -91,7 +91,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 &amp;lt; at &amp;gt; stdcall SymGetLineFromNameW64(long wstr wstr long ptr ptr)
 &amp;lt; at &amp;gt; stdcall SymGetLineNext(long ptr)
 &amp;lt; at &amp;gt; stdcall SymGetLineNext64(long ptr)
-&amp;lt; at &amp;gt; stub SymGetLineNextW64
+&amp;lt; at &amp;gt; stdcall SymGetLineNextW64(long ptr)
 &amp;lt; at &amp;gt; stdcall SymGetLinePrev(long ptr)
 &amp;lt; at &amp;gt; stdcall SymGetLinePrev64(long ptr)
 &amp;lt; at &amp;gt; stub SymGetLinePrevW64
diff --git a/dlls/dbghelp/symbol.c b/dlls/dbghelp/symbol.c
index ebc4644..3984972 100644
--- a/dlls/dbghelp/symbol.c
+++ b/dll&lt;/pre&gt;</description>
    <dc:creator>Alistair Leslie-Hughes</dc:creator>
    <dc:date>2013-05-17T07:37:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115689">
    <title>oledb32: Correct whitespace</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115689</link>
    <description>&lt;pre&gt;Hi,


Changelog:
     oledb32: Correct whitespace


Best Regards
  Alistair Leslie-Hughes
From: Alistair Leslie-Hughes &amp;lt;leslie_alistair&amp;lt; at &amp;gt;hotmail.com&amp;gt;
Date: Fri, 17 May 2013 15:51:11 +1000
Subject: [PATCH] Correct whitespace
To: wine-patches &amp;lt;wine-patches&amp;lt; at &amp;gt;winehq.org&amp;gt;

---
 dlls/oledb32/convert.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/oledb32/convert.c b/dlls/oledb32/convert.c
index 0cd9e53..2f4d545 100644
--- a/dlls/oledb32/convert.c
+++ b/dlls/oledb32/convert.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -121,7 +121,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static int get_length(DBTYPE type)
     case DBTYPE_UI2:
         return 2;
     case DBTYPE_BOOL:
-return sizeof(VARIANT_BOOL);
+        return sizeof(VARIANT_BOOL);
     case DBTYPE_I4:
     case DBTYPE_UI4:
     case DBTYPE_R4:
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -134,7 +134,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static int get_length(DBTYPE type)
     case DBTYPE_DBDATE:
         return sizeof(DBDATE);
     case DBTYPE_DBTIMESTAMP:
-return sizeof(DBTIMESTAMP);
+        return sizeof(DBTIMESTAMP);
     case DBTYPE_CY:
         return sizeof(CY);
   &lt;/pre&gt;</description>
    <dc:creator>Alistair Leslie-Hughes</dc:creator>
    <dc:date>2013-05-17T07:38:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115688">
    <title>msvcp90: Prefer native version.</title>
    <link>http://permalink.gmane.org/gmane.comp.emulators.wine.patches/115688</link>
    <description>&lt;pre&gt;Just like msvcp60,msvcp70,msvcp71,msvcp80,msvcp100,msvcp110 do.
---
 dlls/msvcp90/msvcp90_main.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dlls/msvcp90/msvcp90_main.c b/dlls/msvcp90/msvcp90_main.c
index 7a7aafe..ce56c14 100644
--- a/dlls/msvcp90/msvcp90_main.c
+++ b/dlls/msvcp90/msvcp90_main.c
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -80,10 +80,13 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt; static void init_cxx_funcs(void)
 
 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 {
-    TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
+    TRACE("(%p,%u,%p)\n", hinstDLL, fdwReason, lpvReserved);
 
     switch (fdwReason)
     {
+        case DLL_WINE_PREATTACH:
+            return FALSE;  /* prefer native version */
+
         case DLL_PROCESS_ATTACH:
             init_cxx_funcs();
             init_lockit();
&lt;/pre&gt;</description>
    <dc:creator>Dmitry Timoshkov</dc:creator>
    <dc:date>2013-05-17T06:01:34</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.emulators.wine.patches">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.emulators.wine.patches</link>
  </textinput>
</rdf:RDF>
