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
f3dae17c
Commit
f3dae17c
authored
Jul 27, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Use msi_alloc/free, not HeapAlloc/Free.
parent
75c866ed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
appsearch.c
dlls/msi/appsearch.c
+1
-2
msi.c
dlls/msi/msi.c
+1
-1
No files found.
dlls/msi/appsearch.c
View file @
f3dae17c
...
...
@@ -912,8 +912,7 @@ static UINT ACTION_AppSearchDr(MSIPACKAGE *package, LPWSTR *appValue,
msi_free
(
path
);
if
(
parent
)
{
path
=
HeapAlloc
(
GetProcessHeap
(),
0
,
strlenW
(
parent
)
+
strlenW
(
expanded
)
+
1
);
path
=
msi_alloc
(
strlenW
(
parent
)
+
strlenW
(
expanded
)
+
1
);
if
(
!
path
)
goto
end
;
strcpyW
(
path
,
parent
);
...
...
dlls/msi/msi.c
View file @
f3dae17c
...
...
@@ -531,7 +531,7 @@ UINT WINAPI MSI_GetProductInfo(LPCWSTR szProduct, LPCWSTR szAttribute,
r
=
msi_strcpy_to_awstring
(
val
,
szValue
,
pcchValueBuf
);
HeapFree
(
GetProcessHeap
(),
0
,
val
);
msi_free
(
val
);
return
r
;
}
...
...
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