- mbstring:
. Fixed bug #66797 (mb_substr only takes 32-bit signed integer). (cmb)
+- Opcache:
+ . Fixed bug #72982 (Memory leak in zend_accel_blacklist_update_regexp()
+ function). (Laruence)
+
- SOAP:
. Fixed bug #71711 (Soap Server Member variables reference bug). (Nikita)
. Fixed bug #71996 (Using references in arrays doesn't work like expected).
it->next = NULL;
if ((it->re = pcre_compile(regexp, PCRE_NO_AUTO_CAPTURE, &pcre_error, &pcre_error_offset, 0)) == NULL) {
+ free(it);
blacklist_report_regexp_error(pcre_error, pcre_error_offset);
+ return;
}
/* prepare for the next iteration */
p = regexp + 2;