From:             
Operating system: CentOS release 5.5 (64 Bit)
PHP version:      Irrelevant
Package:          WDDX related
Bug Type:         Bug
Bug description:wddx_deserialize corrupts integer field value when left empty

Description:
------------
Using either PHP 5.2.6 or 5.3.2, wddx_deserialize() corrupts an empty
integer field.

Test script:
---------------
<?php



$message = "<wddxPacket
version='1.0'><header><comment>my_command</comment></header><data><struct><var
name='handle'><number></number></var></struct></data></wddxPacket>";



print_r($message);

echo "\n";

print_r(wddx_deserialize($message));



?>

Expected result:
----------------
<wddxPacket
version='1.0'><header><comment>my_command</comment></header><data><struct><var
name='handle'><number></number></var></struct></data></wddxPacket>

Array

(

    [handle] => 

)



Actual result:
--------------
<wddxPacket
version='1.0'><header><comment>my_command</comment></header><data><struct><var
name='handle'><number></number></var></struct></data></wddxPacket>

Array

(

    [handle] => 414880152

)



The number is different every time the script is run.

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

Reply via email to