PHP :: Bug #26878 :: *printf argument swapping
| 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 | ||
[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 commits
[2004-01-13 18:26 UTC] iliaa@php.net