Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
6351cd82
Commit
6351cd82
authored
Sep 09, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Remove some dead assignments (clang).
parent
bd388594
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
appsearch.c
dlls/msi/appsearch.c
+2
-3
dialog.c
dlls/msi/dialog.c
+1
-2
No files found.
dlls/msi/appsearch.c
View file @
6351cd82
...
...
@@ -460,7 +460,7 @@ static UINT ACTION_AppSearchReg(MSIPACKAGE *package, LPWSTR *appValue, MSISIGNAT
switch
(
type
&
0x0f
)
{
case
msidbLocatorTypeDirectory
:
rc
=
ACTION_SearchDirectory
(
package
,
sig
,
ptr
,
0
,
appValue
);
ACTION_SearchDirectory
(
package
,
sig
,
ptr
,
0
,
appValue
);
break
;
case
msidbLocatorTypeFileName
:
*
appValue
=
app_search_file
(
ptr
,
sig
);
...
...
@@ -481,7 +481,6 @@ end:
msi_free
(
deformatted
);
msiobj_release
(
&
row
->
hdr
);
return
ERROR_SUCCESS
;
}
...
...
@@ -961,7 +960,7 @@ static UINT ACTION_AppSearchDr(MSIPACKAGE *package, LPWSTR *appValue, MSISIGNATU
{
MSISIGNATURE
parentSig
;
rc
=
ACTION_AppSearchSigName
(
package
,
parentName
,
&
parentSig
,
&
parent
);
ACTION_AppSearchSigName
(
package
,
parentName
,
&
parentSig
,
&
parent
);
ACTION_FreeSignature
(
&
parentSig
);
if
(
!
parent
)
{
...
...
dlls/msi/dialog.c
View file @
6351cd82
...
...
@@ -2467,12 +2467,11 @@ MSISelectionTree_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
tvhti
.
pt
.
y
=
(
short
)
HIWORD
(
lParam
);
tvhti
.
flags
=
0
;
tvhti
.
hItem
=
0
;
r
=
CallWindowProcW
(
info
->
oldproc
,
hWnd
,
TVM_HITTEST
,
0
,
(
LPARAM
)
&
tvhti
);
CallWindowProcW
(
info
->
oldproc
,
hWnd
,
TVM_HITTEST
,
0
,
(
LPARAM
)
&
tvhti
);
if
(
tvhti
.
flags
&
TVHT_ONITEMSTATEICON
)
return
msi_seltree_menu
(
hWnd
,
tvhti
.
hItem
);
break
;
}
r
=
CallWindowProcW
(
info
->
oldproc
,
hWnd
,
msg
,
wParam
,
lParam
);
switch
(
msg
)
...
...
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