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
2752c3bc
Commit
2752c3bc
authored
Sep 07, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Don't fail if the file ends during a big block.
Apparently, it's valid for the last block in a file to be incomplete.
parent
053be78e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
storage32.c
dlls/ole32/storage32.c
+9
-2
No files found.
dlls/ole32/storage32.c
View file @
2752c3bc
...
...
@@ -3875,13 +3875,20 @@ static BOOL StorageImpl_ReadBigBlock(
void
*
buffer
)
{
ULARGE_INTEGER
ulOffset
;
DWORD
read
;
DWORD
read
=
0
;
ulOffset
.
u
.
HighPart
=
0
;
ulOffset
.
u
.
LowPart
=
StorageImpl_GetBigBlockOffset
(
This
,
blockIndex
);
StorageImpl_ReadAt
(
This
,
ulOffset
,
buffer
,
This
->
bigBlockSize
,
&
read
);
return
(
read
==
This
->
bigBlockSize
);
if
(
read
&&
read
<
This
->
bigBlockSize
)
{
/* File ends during this block; fill the rest with 0's. */
memset
((
LPBYTE
)
buffer
+
read
,
0
,
This
->
bigBlockSize
-
read
);
}
return
(
read
!=
0
);
}
static
BOOL
StorageImpl_ReadDWordFromBigBlock
(
...
...
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