php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #41359 wddx_deserialize does not deserialize char codes >= 192
Submitted: 2007-05-10 18:52 UTC Modified: 2007-05-10 20:26 UTC
From: tim at whiteinteractive dot com Assigned:
Status: Not a bug Package: WDDX related
PHP Version: 4.4.7 OS: Mac OS X 10.4
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
6 + 12 = ?
Subscribe to this entry?

 
 [2007-05-10 18:52 UTC] tim at whiteinteractive dot com
Description:
------------
wddx_deserialize does not deserialize characters above and including decimal 192 correctly. As follows:

\xC0 -> \x00 
\xC1 -> \x40 
\xC2 -> \x80 
\xC3 -> \xC0 
\xC4 -> \x3F 
\xC5 -> \x3F 
.......... 
\xFF -> \x3F 


I have reported this before and it is still not fixed.


Reproduce code:
---------------
$x = "<wddxPacket version='1.0'><header/><data><string><char code='FF'/></string></data></wddxPacket>";
$s = wddx_deserialize( $x );
var_dump( ord($s) );


Expected result:
----------------
(int)255

Actual result:
--------------
(int)64

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-05-10 20:26 UTC] tony2001@php.net
Duplicate of #40080.

>I have reported this before and it is still not fixed.
There is no maintainer for wddx and he/she won't magically appear if you report your problem twice.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 03:01:28 2024 UTC