Home
last modified time | relevance | path

Searched refs:overflow (Results 1 – 25 of 136) sorted by path

123456

/PHP-8.1/.github/workflows/
H A Dnightly.yml358 # Test causes a heap-buffer-overflow but I cannot reproduce it locally...
/PHP-8.1/
H A DCODING_STANDARDS.md67 They also provide useful allocation and overflow information while running
H A DNEWS320 . Prevent int overflow on $decimals in number_format. (Marc Bennewitz)
656 . Fixed oss-fuzz #57392 (Buffer-overflow in php_fgetcsv() with \0 delimiter
665 . Fixed overflow check in OnUpdateMemoryConsumption. (nielsdos)
724 . Fixed bug GH-10715 (heap buffer overflow on --run option misuse). (nielsdos)
952 . Fixed bug #81738: buffer overflow in hash_update() on long parameter.
1077 . Fixed potential overflow for the builtin server via the PHP_CLI_SERVER_WORKERS
1155 . Fixed bug #81723 (Heap buffer overflow in finfo_buffer). (CVE-2022-31627)
1216 . Fixed bug #81719: mysqlnd/pdo password buffer overflow. (CVE-2022-31626)
1642 . Fixed bug #81513 (Future possibility for heap overflow in FPM zlog).
/PHP-8.1/Zend/Optimizer/
H A Dsccp.c862 bool overflow; in can_ct_eval_func_call() local
865 && zend_safe_address(Z_STRLEN_P(args[0]), Z_LVAL_P(args[1]), 0, &overflow) < 64 * 1024 in can_ct_eval_func_call()
866 && !overflow; in can_ct_eval_func_call()
2150 && !info->range.overflow && !info->range.underflow in value_from_type_and_range()
H A Dzend_dump.c150 if (r->underflow && r->overflow) { in zend_dump_range()
161 if (r->overflow) { in zend_dump_range()
384 if (r->range.underflow && r->range.overflow) { in zend_dump_range_constraint()
407 if (r->range.overflow) { in zend_dump_range_constraint()
H A Dzend_inference.c1098 tmp->overflow = 0; in zend_inference_calc_range()
1193 tmp->overflow = constraint->range.overflow && tmp->overflow; in zend_inference_calc_range()
1199 tmp->overflow = ssa->var_info[constraint->max_ssa_var].range.overflow && tmp->overflow; in zend_inference_calc_range()
1222 tmp->overflow = constraint->range.overflow; in zend_inference_calc_range()
1246 tmp->overflow |= ssa->var_info[p->sources[i]].range.overflow; in zend_inference_calc_range()
1278 tmp->overflow = 0; in zend_inference_propagate_range()
1628 if (overflow) { in zend_inference_init_range()
1635 ssa->var_info[var].range.overflow = overflow; in zend_inference_init_range()
1653 r->overflow = 1; in zend_inference_widening_meet()
1659 var_info->range.overflow == r->overflow) { in zend_inference_widening_meet()
[all …]
H A Dzend_inference.h128 return ssa->var_info[ssa_op->opN##_use].range.overflow; \
H A Dzend_ssa.c133 char underflow, char overflow, char negative) /* {{{ */ in pi_range() argument
143 constraint->range.overflow = overflow; in pi_range()
H A Dzend_ssa.h29 bool overflow; member
/PHP-8.1/Zend/tests/
H A Darray_literal_next_element_error.phpt2 Next free element may overflow in array literals
H A Dbug34045.phpt2 Bug #34045 (Buffer overflow with serialized object)
H A Dbug70430.phpt2 Bug #70430: Stack buffer overflow in zend_language_parser()
H A Dbug77345_gc_1.phpt2 Bug #77345 (Segmentation faults stack overflow in cyclic garbage collector) (Bug #77427)
H A Dbug77345_gc_2.phpt2 Bug #77345 (Segmentation faults stack overflow in cyclic garbage collector) (Bug #77427)
H A Dbug78363.phpt2 Bug #78363: Buffer overflow in zendparse
H A Dgc_023.phpt2 GC 023: Root buffer overflow (automatic collection)
H A Dhex_overflow_32bit.phpt2 testing integer overflow (32bit)
H A Dint_overflow_32bit.phpt2 testing integer overflow (32bit)
H A Dint_overflow_64bit.phpt2 testing integer overflow (64bit)
H A Doct_overflow.phpt2 testing integer overflow (32bit)
H A Doct_overflow_char.phpt2 Octal overflow in string interpolation
6 // "abc", ordinarily 'b' would be \142, but we'll deliberately overflow the value by \400
10 Warning: Octal escape sequence overflow \542 is greater than \377 in %s%eoct_overflow_char.php on l…
H A Dwarning_during_heredoc_scan_ahead.phpt13 Warning: Octal escape sequence overflow \400 is greater than \377 in %s on line %d
15 Warning: Octal escape sequence overflow \400 is greater than \377 in %s on line %d
/PHP-8.1/Zend/tests/type_declarations/
H A Dtyped_properties_019.phpt2 Test typed properties int must not be allowed to overflow
/PHP-8.1/Zend/tests/type_declarations/union_types/
H A Dincdec_prop.phpt52 * even if the result of the overflow (a float) would technically be allowed
/PHP-8.1/Zend/
H A Dzend_alloc.c253 int overflow; /* memory overflow flag */ member
380 heap->overflow = 1; in zend_mm_safe_error()
392 heap->overflow = 0; in zend_mm_safe_error()
992 } else if (heap->overflow == 0) {
1518 } else if (heap->overflow == 0) {
1810 } else if (heap->overflow == 0) {
1918 heap->overflow = 0;
2728 return AG(mm_heap)->overflow;
2781 if (add_size > heap->limit - heap->size && !heap->overflow) {
2863 mm_heap->overflow = 0;
[all …]

Completed in 149 milliseconds

123456