Changeset 7314
- Timestamp:
- 03/15/2008 06:33:16 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-pclzip.php
r7130 r7314 4471 4471 4472 4472 // ----- Add the byte 4473 $v_bytes = ($v_bytes << 8) | Ord($v_byte); 4473 // Note we mask the old value down such that once shifted we can never end up with more than a 32bit number 4474 // Otherwise on systems where we have 64bit integers the check below for the magic number will fail. 4475 $v_bytes = ( ($v_bytes & 0xFFFFFF) << 8) | Ord($v_byte); 4474 4476 4475 4477 // ----- Compare the bytes
Note: See TracChangeset
for help on using the changeset viewer.