Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a2f5d0e2
Commit
a2f5d0e2
authored
Dec 16, 2009
by
James Hawkins
Committed by
Alexandre Julliard
Dec 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Free the cached streams when closing the database.
parent
78b2ceda
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
database.c
dlls/msi/database.c
+1
-0
msipriv.h
dlls/msi/msipriv.h
+1
-0
No files found.
dlls/msi/database.c
View file @
a2f5d0e2
...
...
@@ -57,6 +57,7 @@ static VOID MSI_CloseDatabase( MSIOBJECTHDR *arg )
msi_free
(
db
->
path
);
free_cached_tables
(
db
);
msi_free_streams
(
db
);
msi_free_transforms
(
db
);
msi_destroy_stringtable
(
db
->
strings
);
IStorage_Release
(
db
->
storage
);
...
...
dlls/msi/msipriv.h
View file @
a2f5d0e2
...
...
@@ -650,6 +650,7 @@ extern void msiobj_unlock(MSIOBJECTHDR *);
extern
void
msi_free_handle_table
(
void
);
extern
void
free_cached_tables
(
MSIDATABASE
*
db
);
extern
void
msi_free_streams
(
MSIDATABASE
*
db
);
extern
void
msi_free_transforms
(
MSIDATABASE
*
db
);
extern
UINT
MSI_CommitTables
(
MSIDATABASE
*
db
);
...
...
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