Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
e962b0a7
Commit
e962b0a7
authored
May 06, 2007
by
James Hawkins
Committed by
Alexandre Julliard
May 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Remove debugging printf statements.
parent
12c33ab8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
package.c
dlls/msi/package.c
+1
-4
No files found.
dlls/msi/package.c
View file @
e962b0a7
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#define NONAMELESSSTRUCT
#define NONAMELESSSTRUCT
#include <stdarg.h>
#include <stdarg.h>
#include <stdio.h>
#include "windef.h"
#include "windef.h"
#include "winbase.h"
#include "winbase.h"
#include "winreg.h"
#include "winreg.h"
...
@@ -1105,12 +1104,10 @@ UINT MSI_SetPropertyW( MSIPACKAGE *package, LPCWSTR szName, LPCWSTR szValue)
...
@@ -1105,12 +1104,10 @@ UINT MSI_SetPropertyW( MSIPACKAGE *package, LPCWSTR szName, LPCWSTR szValue)
if
(
rc
==
ERROR_SUCCESS
)
if
(
rc
==
ERROR_SUCCESS
)
{
{
rc
=
MSI_ViewExecute
(
view
,
row
);
rc
=
MSI_ViewExecute
(
view
,
row
);
if
(
rc
!=
ERROR_SUCCESS
)
printf
(
"MSI_ViewExecute failed: %d
\n
"
,
rc
);
MSI_ViewClose
(
view
);
MSI_ViewClose
(
view
);
msiobj_release
(
&
view
->
hdr
);
msiobj_release
(
&
view
->
hdr
);
}
}
else
printf
(
"MSI_DatabaseOpenView failed: %d
\n
"
,
rc
);
msiobj_release
(
&
row
->
hdr
);
msiobj_release
(
&
row
->
hdr
);
return
rc
;
return
rc
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment