PHP :: Bug #66909 :: configure fails utf8_to_mutf7 test
| Bug #66909 | configure fails utf8_to_mutf7 test | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Submitted: | 2014-03-14 22:29 UTC | Modified: | 2015-12-09 11:06 UTC |
|
||||||||||
| From: | mdwong at honolulu dot gov | Assigned: | ab (profile) | |||||||||||
| Status: | Closed | Package: | *Configuration Issues | |||||||||||
| PHP Version: | 5.5.10 | OS: | ||||||||||||
| Private report: | No | CVE-ID: | None | |||||||||||
[2014-03-14 22:29 UTC] mdwong at honolulu dot gov
Description:
------------
testing for IMAP, configure calls utf8_to_mutf7() with no argument, causing a core dump in Linux on S/390 IFL. utf8_to_mutf7() requires one argument. Editing configure to this fixes the problem:
char utf8_to_mutf7();
char testarg[20];
strcpy (testarg, "");
int main() {
utf8_to_mutf7(testarg);
return 0;
}
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2015-11-09 16:33 UTC] michael at orlitzky dot com
[2015-12-09 11:06 UTC] ab@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: ab
[2015-12-09 11:06 UTC] ab@php.net