From:             ja dot doma at gmail dot com
Operating system: Windows
PHP version:      5.2.6
PHP Bug Type:     Reproducible crash
Bug description:  var_dump(int xor int) crash

Description:
------------
PHP CLI (console mode) crashes when executing:

var_dump(120 xor 111); //or any other number

reproducible: always


//this works fine
$ch = 120 xor 111;
var_dump($ch);

//this works too
var_dump(120);
var_dump(120 + 3);


weird because other numerical expressions do not cause the crash, only
xor.

Reproduce code:
---------------
1) make test.php
2) put <?php var_dump(120 xor 111); ?> into the file
3) php test.php

Expected result:
----------------
int(120)


-- 
Edit bug report at http://bugs.php.net/?id=46078&edit=1
-- 
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=46078&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=46078&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=46078&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=46078&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=46078&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=46078&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=46078&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=46078&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=46078&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=46078&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=46078&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=46078&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=46078&r=globals
PHP 4 support discontinued:   http://bugs.php.net/fix.php?id=46078&r=php4
Daylight Savings:             http://bugs.php.net/fix.php?id=46078&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=46078&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=46078&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=46078&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=46078&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=46078&r=mysqlcfg

Reply via email to