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
39e35cd7
Commit
39e35cd7
authored
Oct 28, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Oct 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Don't call internal functions from OLECONVERT_WriteOLE20ToBuffer.
parent
6a360257
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
storage32.c
dlls/ole32/storage32.c
+2
-2
No files found.
dlls/ole32/storage32.c
View file @
39e35cd7
...
...
@@ -6697,8 +6697,8 @@ static DWORD OLECONVERT_WriteOLE20ToBuffer(LPSTORAGE pStorage, BYTE **pData)
if
(
hRes
==
S_OK
)
{
/* Copy Src Storage to the Temp Storage */
StorageImpl
_CopyTo
(
pStorage
,
0
,
NULL
,
NULL
,
pTempStorage
);
StorageBaseImpl
_Release
(
pTempStorage
);
IStorage
_CopyTo
(
pStorage
,
0
,
NULL
,
NULL
,
pTempStorage
);
IStorage
_Release
(
pTempStorage
);
/* Open Temp Storage as a file and copy to memory */
hFile
=
CreateFileW
(
wstrTempFile
,
GENERIC_READ
,
0
,
NULL
,
OPEN_EXISTING
,
FILE_ATTRIBUTE_NORMAL
,
0
);
...
...
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