php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #77589 Core dump using parse_ini_string with numeric sections
Submitted: 2019-02-08 19:36 UTC Modified: -
From: public at joaquinfernandez dot net Assigned:
Status: Closed Package: Filesystem function related
PHP Version: 7.3.2 OS: Linux
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: public at joaquinfernandez dot net
New email:
PHP Version: OS:

 

 [2019-02-08 19:36 UTC] public at joaquinfernandez dot net
Description:
------------
If ini string has numeric sections and INI_SCANNER_TYPED options is used, then i get segmentation fault.

But if numeric sections are enclosed in quotes (["0"], ["1"], etc) then no problem occurs.

Test script:
---------------
var_dump(
    parse_ini_string(
        <<<INI
[0]
a = 1
b = "2"
c = true

[1]
a = 0
b = "abc"
c = false
INI,
        TRUE,
        INI_SCANNER_TYPED
    )
);


Expected result:
----------------
array(2) {
  [0] =>
  array(3) {
    'a' =>
    int(1)
    'b' =>
    string(1) "2"
    'c' =>
    bool(true)
  }
  [1] =>
  array(3) {
    'a' =>
    int(0)
    'b' =>
    string(3) "abc"
    'c' =>
    bool(false)
  }
}


Actual result:
--------------
Segmentation fault

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2019-02-11 07:35 UTC] laruence@php.net
Automatic comment on behalf of laruence@gmail.com
Revision: http://git.php.net/?p=php-src.git;a=commit;h=92055ca79b821d0712ed67b8173d2312e7e9fdbd
Log: Fixed bug #77589 (Core dump using parse_ini_string with numeric sections)
 [2019-02-11 07:35 UTC] laruence@php.net
-Status: Open +Status: Closed
 [2019-02-11 08:37 UTC] nikic@php.net
Automatic comment on behalf of laruence@gmail.com
Revision: http://git.php.net/?p=php-src.git;a=commit;h=92055ca79b821d0712ed67b8173d2312e7e9fdbd
Log: Fixed bug #77589 (Core dump using parse_ini_string with numeric sections)
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 08:01:28 2024 UTC