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
bbff30f3
Commit
bbff30f3
authored
Nov 14, 2014
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Nov 14, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
appwiz.cpl: Simplify the check for an empty string (PVS-Studio).
parent
3a7bf90f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
appwiz.c
dlls/appwiz.cpl/appwiz.c
+2
-2
No files found.
dlls/appwiz.cpl/appwiz.c
View file @
bbff30f3
...
...
@@ -567,7 +567,7 @@ static void SetInfoDialogText(HKEY hKey, LPCWSTR lpKeyName, LPCWSTR lpAltMessage
/* if hKey is null, lpKeyName contains the string we want to check */
if
(
hKey
==
NULL
)
{
if
(
(
lpKeyName
)
&&
(
lstrlenW
(
lpKeyName
)
>
0
)
)
if
(
lpKeyName
&&
lpKeyName
[
0
]
)
SetWindowTextW
(
hWndDlgItem
,
lpKeyName
);
else
SetWindowTextW
(
hWndDlgItem
,
lpAltMessage
);
...
...
@@ -577,7 +577,7 @@ static void SetInfoDialogText(HKEY hKey, LPCWSTR lpKeyName, LPCWSTR lpAltMessage
buflen
=
MAX_STRING_LEN
;
if
((
RegQueryValueExW
(
hKey
,
lpKeyName
,
0
,
0
,
(
LPBYTE
)
buf
,
&
buflen
)
==
ERROR_SUCCESS
)
&&
(
lstrlenW
(
buf
)
>
0
)
)
ERROR_SUCCESS
)
&&
buf
[
0
]
)
SetWindowTextW
(
hWndDlgItem
,
buf
);
else
SetWindowTextW
(
hWndDlgItem
,
lpAltMessage
);
...
...
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