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
9d517a17
Commit
9d517a17
authored
Aug 05, 2015
by
Vincent Povirk
Committed by
Alexandre Julliard
Aug 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Ignore high part of size in storage version 3 files.
parent
7ec5f555
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
storage32.c
dlls/ole32/storage32.c
+12
-4
No files found.
dlls/ole32/storage32.c
View file @
9d517a17
...
...
@@ -3446,10 +3446,18 @@ static HRESULT StorageImpl_ReadDirEntry(
OFFSET_PS_SIZE
,
&
buffer
->
size
.
u
.
LowPart
);
StorageUtl_ReadDWord
(
currentEntry
,
OFFSET_PS_SIZE_HIGH
,
&
buffer
->
size
.
u
.
HighPart
);
if
(
This
->
bigBlockSize
<
4096
)
{
/* Version 3 files may have junk in the high part of size. */
buffer
->
size
.
u
.
HighPart
=
0
;
}
else
{
StorageUtl_ReadDWord
(
currentEntry
,
OFFSET_PS_SIZE_HIGH
,
&
buffer
->
size
.
u
.
HighPart
);
}
}
return
readRes
;
...
...
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