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
a4b0152c
Commit
a4b0152c
authored
Nov 30, 2010
by
Adam Martinson
Committed by
Alexandre Julliard
Dec 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3/domdoc: Add a ref to the schema cache in copy_properties().
parent
f45aeb4a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
domdoc.c
dlls/msxml3/domdoc.c
+2
-0
schema.c
dlls/msxml3/schema.c
+0
-1
No files found.
dlls/msxml3/domdoc.c
View file @
a4b0152c
...
...
@@ -294,6 +294,8 @@ static domdoc_properties* copy_properties(domdoc_properties const* properties)
pcopy
->
version
=
properties
->
version
;
pcopy
->
preserving
=
properties
->
preserving
;
pcopy
->
schemaCache
=
properties
->
schemaCache
;
if
(
pcopy
->
schemaCache
)
IXMLDOMSchemaCollection2_AddRef
(
pcopy
->
schemaCache
);
pcopy
->
XPath
=
properties
->
XPath
;
pcopy
->
selectNsStr_len
=
properties
->
selectNsStr_len
;
list_init
(
&
pcopy
->
selectNsList
);
...
...
dlls/msxml3/schema.c
View file @
a4b0152c
...
...
@@ -38,7 +38,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msxml
);
/* We use a chained hashtable, which can hold any number of schemas
* TODO: versioned constructor
* TODO: grow/shrink hashtable depending on load factor
* TODO: implement read-only where appropriate
*/
...
...
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