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
c7f12626
Commit
c7f12626
authored
May 04, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 05, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Fix a string leak in msxml6 mode (Valgrind).
parent
c9c47459
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
schema.c
dlls/msxml3/schema.c
+3
-1
No files found.
dlls/msxml3/schema.c
View file @
c7f12626
...
...
@@ -1318,11 +1318,13 @@ static HRESULT WINAPI schema_cache_get(IXMLDOMSchemaCollection2* iface, BSTR uri
static
HRESULT
WINAPI
schema_cache_remove
(
IXMLDOMSchemaCollection2
*
iface
,
BSTR
uri
)
{
schema_cache
*
This
=
impl_from_IXMLDOMSchemaCollection2
(
iface
);
xmlChar
*
name
=
uri
?
xmlchar_from_wchar
(
uri
)
:
xmlchar_from_wchar
(
emptyW
);
xmlChar
*
name
;
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
uri
));
if
(
This
->
version
==
MSXML6
)
return
E_NOTIMPL
;
name
=
uri
?
xmlchar_from_wchar
(
uri
)
:
xmlchar_from_wchar
(
emptyW
);
cache_remove_entry
(
This
,
name
);
heap_free
(
name
);
return
S_OK
;
...
...
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