Skip to content

Commit a80ad10

Browse files
committed
- Fix merge
2 parents 9973df7 + 02de601 commit a80ad10

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ext/soap/php_xml.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ xmlDocPtr soap_xmlParseFile(const char *filename)
100100
ctxt->sax->warning = NULL;
101101
ctxt->sax->error = NULL;
102102
/*ctxt->sax->fatalError = NULL;*/
103+
#if LIBXML_VERSION >= 20703
104+
ctxt->options |= XML_PARSE_HUGE;
105+
#endif
103106
old = php_libxml_disable_entity_loader(1);
104107
xmlParseDocument(ctxt);
105108
php_libxml_disable_entity_loader(old);

sapi/fpm/fpm/fpm_request.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,6 @@ void fpm_request_finished() /* {{{ */
219219

220220
proc->request_stage = FPM_REQUEST_FINISHED;
221221
proc->tv = now;
222-
memset(&proc->accepted, 0, sizeof(proc->accepted));
223-
proc->accepted_epoch = 0;
224222
fpm_scoreboard_proc_release(proc);
225223
}
226224
/* }}} */

0 commit comments

Comments
 (0)