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
18db6078
Commit
18db6078
authored
Nov 20, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Nov 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix some memory leaks.
parent
13078f18
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
files.c
dlls/msi/files.c
+3
-0
No files found.
dlls/msi/files.c
View file @
18db6078
...
...
@@ -518,8 +518,11 @@ static UINT load_media_info(MSIPACKAGE *package, MSIFILE *file, struct media_inf
mi
->
disk_id
=
MSI_RecordGetInteger
(
row
,
1
);
mi
->
last_sequence
=
MSI_RecordGetInteger
(
row
,
2
);
msi_free
(
mi
->
disk_prompt
);
mi
->
disk_prompt
=
strdupW
(
MSI_RecordGetString
(
row
,
3
));
msi_free
(
mi
->
cabinet
);
mi
->
cabinet
=
strdupW
(
MSI_RecordGetString
(
row
,
4
));
msi_free
(
mi
->
volume_label
);
mi
->
volume_label
=
strdupW
(
MSI_RecordGetString
(
row
,
5
));
msiobj_release
(
&
row
->
hdr
);
...
...
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