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
ee7d8547
Commit
ee7d8547
authored
Nov 03, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Downgrade some warnings.
parent
566e67a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
action.c
dlls/msi/action.c
+3
-4
No files found.
dlls/msi/action.c
View file @
ee7d8547
...
...
@@ -2651,7 +2651,7 @@ static void delete_reg_key_or_value( HKEY hkey_root, LPCWSTR key, LPCWSTR value,
{
if
((
res
=
RegDeleteTreeW
(
hkey_root
,
key
)))
{
WARN
(
"Failed to delete key %s (%d)
\n
"
,
debugstr_w
(
key
),
res
);
TRACE
(
"Failed to delete key %s (%d)
\n
"
,
debugstr_w
(
key
),
res
);
}
return
;
}
...
...
@@ -2660,12 +2660,11 @@ static void delete_reg_key_or_value( HKEY hkey_root, LPCWSTR key, LPCWSTR value,
{
if
((
res
=
RegDeleteValueW
(
hkey
,
value
)))
{
WARN
(
"Failed to delete value %s (%d)
\n
"
,
debugstr_w
(
value
),
res
);
TRACE
(
"Failed to delete value %s (%d)
\n
"
,
debugstr_w
(
value
),
res
);
}
res
=
RegQueryInfoKeyW
(
hkey
,
NULL
,
NULL
,
NULL
,
&
num_subkeys
,
NULL
,
NULL
,
&
num_values
,
NULL
,
NULL
,
NULL
,
NULL
);
RegCloseKey
(
hkey
);
if
(
!
res
&&
!
num_subkeys
&&
!
num_values
)
{
TRACE
(
"Removing empty key %s
\n
"
,
debugstr_w
(
key
));
...
...
@@ -2673,7 +2672,7 @@ static void delete_reg_key_or_value( HKEY hkey_root, LPCWSTR key, LPCWSTR value,
}
return
;
}
WARN
(
"Failed to open key %s (%d)
\n
"
,
debugstr_w
(
key
),
res
);
TRACE
(
"Failed to open key %s (%d)
\n
"
,
debugstr_w
(
key
),
res
);
}
...
...
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