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
f93390f7
Commit
f93390f7
authored
Jul 27, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Simplify the "pointer to start of array" idiom.
parent
c48b372b
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
39 deletions
+39
-39
query.c
dlls/setupapi/query.c
+2
-2
setupcab.c
dlls/setupapi/setupcab.c
+37
-37
No files found.
dlls/setupapi/query.c
View file @
f93390f7
...
...
@@ -286,7 +286,7 @@ BOOL WINAPI SetupQueryInfFileInformationW(PSP_INF_INFORMATION InfInformation,
if
(
InfIndex
!=
0
)
FIXME
(
"Appended INF files are not handled
\n
"
);
ptr
=
(
LPWSTR
)
&
InfInformation
->
VersionData
[
0
]
;
ptr
=
(
LPWSTR
)
InfInformation
->
VersionData
;
len
=
lstrlenW
(
ptr
);
if
(
RequiredSize
)
...
...
@@ -674,7 +674,7 @@ BOOL WINAPI SetupQueryInfOriginalFileInformationW(
return
FALSE
;
}
inf_path
=
(
LPWSTR
)
&
InfInformation
->
VersionData
[
0
]
;
inf_path
=
(
LPWSTR
)
InfInformation
->
VersionData
;
/* FIXME: we should get OriginalCatalogName from CatalogFile line in
* the original inf file and cache it, but that would require building a
...
...
dlls/setupapi/setupcab.c
View file @
f93390f7
This diff is collapsed.
Click to expand it.
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