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
b67b8e7a
Commit
b67b8e7a
authored
Feb 28, 1999
by
Thuy Nguyen
Committed by
Alexandre Julliard
Feb 28, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a missing Release.
STGM_CREATE should translate to CREATE_ALWAYS.
parent
95af1a69
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
storage32.c
ole/storage32.c
+2
-1
No files found.
ole/storage32.c
View file @
b67b8e7a
...
...
@@ -3085,6 +3085,7 @@ StorageInternalImpl* StorageInternalImpl_Construct(
void
StorageInternalImpl_Destroy
(
StorageInternalImpl
*
This
)
{
StorageBaseImpl_Release
((
IStorage
*
)
This
->
ancestorStorage
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
...
...
@@ -5224,7 +5225,7 @@ static DWORD GetCreationModeFromSTGM(DWORD stgm)
BOOL
bSTGM_FAILIFTHERE
=
!
(
bSTGM_CREATE
||
bSTGM_CONVERT
);
if
(
bSTGM_CREATE
)
dwCreationDistribution
=
CREATE_
NEW
;
dwCreationDistribution
=
CREATE_
ALWAYS
;
else
if
(
bSTGM_FAILIFTHERE
)
dwCreationDistribution
=
CREATE_NEW
;
else
if
(
bSTGM_CONVERT
)
...
...
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