File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -80,10 +80,6 @@ xmlDocPtr soap_xmlParseFile(const char *filename)
80
80
xmlDocPtr ret ;
81
81
bool old_allow_url_fopen ;
82
82
83
- /*
84
- xmlInitParser();
85
- */
86
-
87
83
old_allow_url_fopen = PG (allow_url_fopen );
88
84
PG (allow_url_fopen ) = 1 ;
89
85
ctxt = xmlCreateFileParserCtxt (filename );
@@ -120,10 +116,6 @@ xmlDocPtr soap_xmlParseFile(const char *filename)
120
116
ret = NULL ;
121
117
}
122
118
123
- /*
124
- xmlCleanupParser();
125
- */
126
-
127
119
if (ret ) {
128
120
cleanup_xml_node ((xmlNodePtr )ret );
129
121
}
@@ -135,10 +127,6 @@ xmlDocPtr soap_xmlParseMemory(const void *buf, size_t buf_size)
135
127
xmlParserCtxtPtr ctxt = NULL ;
136
128
xmlDocPtr ret ;
137
129
138
-
139
- /*
140
- xmlInitParser();
141
- */
142
130
ctxt = xmlCreateMemoryParserCtxt (buf , buf_size );
143
131
if (ctxt ) {
144
132
bool old ;
@@ -171,10 +159,6 @@ xmlDocPtr soap_xmlParseMemory(const void *buf, size_t buf_size)
171
159
ret = NULL ;
172
160
}
173
161
174
- /*
175
- xmlCleanupParser();
176
- */
177
-
178
162
/*
179
163
if (ret) {
180
164
cleanup_xml_node((xmlNodePtr)ret);
You can’t perform that action at this time.
0 commit comments