Module: wine
Branch: master
Commit: 03b6dcb4a1254e3ae1b707bdb17195b8cad6286a
URL: http://source.winehq.org/git/wine.git/?a=commit;h=03b6dcb4a1254e3ae1b707bdb…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu May 28 20:10:15 2009 +0200
rpcrt4/tests: Mark some stub message tests broken for older Windows versions.
Group the common tests in a function shared between client and server.
---
dlls/rpcrt4/tests/ndr_marshall.c | 269 ++++++++++++++++----------------------
1 files changed, 112 insertions(+), 157 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=03b6dcb4a1254e3ae1b70…
Module: wine
Branch: master
Commit: 5922de46dec881d59cc7ea2383c763538dedd87b
URL: http://source.winehq.org/git/wine.git/?a=commit;h=5922de46dec881d59cc7ea238…
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Thu May 28 15:03:19 2009 +0200
msi: Don't duplicate the table name in CREATE_CreateView.
The table name is tracked in the list attached to the parent query object,
which is destroyed after the view object.
This plugs a leak since the duplicated table name was never freed.
---
dlls/msi/create.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/create.c b/dlls/msi/create.c
index 89d3288..63cd373 100644
--- a/dlls/msi/create.c
+++ b/dlls/msi/create.c
@@ -180,7 +180,7 @@ UINT CREATE_CreateView( MSIDATABASE *db, MSIVIEW **view, LPCWSTR table,
for( col = col_info; col; col = col->next )
{
if (!col->table)
- col->table = strdupW(table);
+ col->table = table;
if( !col->temporary )
temp = FALSE;