1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00
Files
archived-php-src/ext/opcache/Optimizer
Nikita Popov daa2b75c76 Fix some sizeof(zend_long) > sizeof(size_t) issues
Fix a couple of mistakes that are only relevant if
sizeof(zend_long) > sizeof(size_t).

* Fix cast order in string offset check: Negation should happen
  after the (zend_long) cast, otherwise sign extension does not
  occur.
* Use Z_UL in zend_inference.
* Use aligned size for HT_USED_SIZE in zend_persist: The issue is
  that on x86-32 uint64_t is considered to be 4-aligned, so the
  alignment assumption does not hold.
2016-09-05 15:33:02 +02:00
..
2016-06-21 20:12:29 +03:00
2016-08-29 12:07:54 +03:00
2016-06-21 20:12:29 +03:00
2016-04-21 23:32:01 +02:00
2016-06-28 11:49:50 +02:00
2016-01-19 15:54:44 +03:00
2016-08-23 12:58:46 +03:00
2016-08-23 13:18:51 +03:00