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
af6c873b
Commit
af6c873b
authored
Oct 17, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 19, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Fix compilation on systems that don't support nameless unions.
parent
323f163a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
regstream.c
dlls/shlwapi/regstream.c
+2
-2
No files found.
dlls/shlwapi/regstream.c
View file @
af6c873b
...
...
@@ -221,7 +221,7 @@ static HRESULT WINAPI IStream_fnSeek (IStream * iface, LARGE_INTEGER dlibMove, D
return
STG_E_INVALIDFUNCTION
;
/* we cut off the high part here */
This
->
dwPos
=
tmp
.
LowPart
;
This
->
dwPos
=
tmp
.
u
.
LowPart
;
if
(
plibNewPosition
)
plibNewPosition
->
QuadPart
=
This
->
dwPos
;
...
...
@@ -240,7 +240,7 @@ static HRESULT WINAPI IStream_fnSetSize (IStream * iface, ULARGE_INTEGER libNewS
TRACE
(
"(%p, %s)
\n
"
,
This
,
wine_dbgstr_longlong
(
libNewSize
.
QuadPart
));
/* we cut off the high part here */
newLen
=
libNewSize
.
LowPart
;
newLen
=
libNewSize
.
u
.
LowPart
;
newBuf
=
HeapReAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
This
->
pbBuffer
,
newLen
);
if
(
!
newBuf
)
return
STG_E_INSUFFICIENTMEMORY
;
...
...
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