php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #32114 DOM crashing when attribute appended to Document
Submitted: 2005-02-25 21:41 UTC Modified: 2005-02-25 23:24 UTC
From: miroslav dot sulc at startnet dot cz Assigned:
Status: Closed Package: DOM XML related
PHP Version: 4.3.10 OS: linux
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:
46 + 29 = ?
Subscribe to this entry?

 
 [2005-02-25 21:41 UTC] miroslav dot sulc at startnet dot cz
Description:
------------
When dumping DOM XML document using
$string = $doc->dump_mem(true, 'UTF-8')
on document where encoding is already set using, the PHP crashes.

Reproduce code:
---------------
$doc = domxml_new_doc('1.0');
$attribute = $doc->create_attribute('encoding', 'UTF-8');
$doc->append_child($attribute);
// This line makes the PHP crash
$string = $doc->dump_mem(true, 'UTF-8');


Expected result:
----------------
It shouldn't crash. It just may issue a warning.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-02-25 21:43 UTC] miroslav dot sulc at startnet dot cz
Corrected summary
 [2005-02-25 23:24 UTC] rrichards@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.

Attributes can only appended to Element nodes. Now issues warning when attempting this operation. Changed summary as well.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 08:01:27 2024 UTC