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
4e4810f2
Commit
4e4810f2
authored
Oct 28, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Nov 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Remove uses of This->base.ancestorStorage in createDirEntry.
parent
7973904d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
storage32.c
dlls/ole32/storage32.c
+4
-4
No files found.
dlls/ole32/storage32.c
View file @
4e4810f2
...
...
@@ -1166,7 +1166,7 @@ static HRESULT createDirEntry(
do
{
hr
=
StorageImpl_ReadRawDirEntry
(
storage
->
base
.
ancestorStorage
,
hr
=
StorageImpl_ReadRawDirEntry
(
storage
,
currentPropertyIndex
,
currentData
);
...
...
@@ -1211,7 +1211,7 @@ static HRESULT createDirEntry(
* obtain the new count of property blocks
*/
blockCount
=
BlockChainStream_GetCount
(
storage
->
base
.
ancestorStorage
->
rootBlockChain
)
+
1
;
storage
->
rootBlockChain
)
+
1
;
/*
* initialize the size used by the property stream
...
...
@@ -1222,7 +1222,7 @@ static HRESULT createDirEntry(
/*
* add a property block to the property chain
*/
BlockChainStream_SetSize
(
storage
->
base
.
ancestorStorage
->
rootBlockChain
,
newSize
);
BlockChainStream_SetSize
(
storage
->
rootBlockChain
,
newSize
);
/*
* memset the empty property in order to initialize the unused newly
...
...
@@ -1241,7 +1241,7 @@ static HRESULT createDirEntry(
propertyIndex
++
)
{
StorageImpl_WriteRawDirEntry
(
storage
->
base
.
ancestorStorage
,
storage
,
propertyIndex
,
emptyData
);
}
...
...
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