php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #26878 *printf argument swapping
Submitted: 2004-01-12 07:42 UTC Modified: 2004-01-13 18:26 UTC
From: drm at melp dot nl Assigned:
Status: Closed Package: Strings related
PHP Version: 4CVS, 5CVS OS: *
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: drm at melp dot nl
New email:
PHP Version: OS:

 

 [2004-01-12 07:42 UTC] drm at melp dot nl
Description:
------------
The *printf family has a bug when pointing to the same argument with different types. Probably the same memoryaddress is used for casting when formatting the argument.

Reproduce code:
---------------
printf ( 
   'Int: %1$d and as string: %1$s', 
   'some string' 
);

// Note that the same happens when 
// using any of the other printf
// functions

Expected result:
----------------
Int: 0 and as string: some string

Actual result:
--------------
Int: 0 and as string: 0

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-01-13 18:26 UTC] iliaa@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.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Oct 27 16:01:27 2024 UTC