File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,9 @@ xmlDocPtr soap_xmlParseFile(const char *filename)
100
100
ctxt -> sax -> warning = NULL ;
101
101
ctxt -> sax -> error = NULL ;
102
102
/*ctxt->sax->fatalError = NULL;*/
103
+ #if LIBXML_VERSION >= 20703
104
+ ctxt -> options |= XML_PARSE_HUGE ;
105
+ #endif
103
106
old = php_libxml_disable_entity_loader (1 );
104
107
xmlParseDocument (ctxt );
105
108
php_libxml_disable_entity_loader (old );
Original file line number Diff line number Diff line change @@ -219,8 +219,6 @@ void fpm_request_finished() /* {{{ */
219
219
220
220
proc -> request_stage = FPM_REQUEST_FINISHED ;
221
221
proc -> tv = now ;
222
- memset (& proc -> accepted , 0 , sizeof (proc -> accepted ));
223
- proc -> accepted_epoch = 0 ;
224
222
fpm_scoreboard_proc_release (proc );
225
223
}
226
224
/* }}} */
You can’t perform that action at this time.
0 commit comments