php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #78070 dbase functions may modify passed array
Submitted: 2019-05-26 15:47 UTC Modified: 2019-05-26 16:53 UTC
From: cmb@php.net Assigned: cmb (profile)
Status: Closed Package: dbase (PECL)
PHP Version: Irrelevant OS: *
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:
44 - 33 = ?
Subscribe to this entry?

 
 [2019-05-26 15:47 UTC] cmb@php.net
Description:
------------
dbase_create(), dbase_add_record() and dbase_replace_record()
modify their array argument, albeit passed by value, if a string
is expected, but a compatible type is given.


Test script:
---------------
<?php
$def = array([17, 'C', 10]);
$dbh = dbase_create('test.dbf', $def);
var_dump($def);
$record = [4];
dbase_add_record($dbh, $record);
dbase_close($dbh);
var_dump($record);
?>


Expected result:
----------------
array(1) {
  [0]=>
  array(3) {
    [0]=>
    int(17)
    [1]=>
    string(1) "C"
    [2]=>
    int(10)
  }
}
array(1) {
  [0]=>
  int(4)
}

Actual result:
--------------
array(1) {
  [0]=>
  array(3) {
    [0]=>
    string(2) "17"
    [1]=>
    string(1) "C"
    [2]=>
    int(10)
  }
}
array(1) {
  [0]=>
  string(1) "4"
}

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2019-05-26 15:48 UTC] cmb@php.net
-Assigned To: +Assigned To: cmb
 [2019-05-26 16:50 UTC] cmb@php.net
-Summary: dbase function may modify passed array +Summary: dbase functions may modify passed array
 [2019-05-26 16:53 UTC] cmb@php.net
Automatic comment from SVN on behalf of cmb
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=347491
Log: Fix #78070: dbase functions may modify passed array

We must not convert elements of arrays directly, which have been passed
as arguments; instead we need to convert copies of those elements.
 [2019-05-26 16:53 UTC] cmb@php.net
-Status: Assigned +Status: Closed
 [2019-05-26 18:47 UTC] cmb@php.net
Automatic comment from SVN on behalf of cmb
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=347492
Log: Fix fix for bug 78070

We must not assume that `value` has the desired type, but use `tmp_value` instead.
We also make sure to `zval_dtor` the `tmp_value` in case of failure (although
`zval_dtor`ing scalars is not strictly neccessary at all).
 [2021-04-06 10:18 UTC] git@php.net
Automatic comment on behalf of 
Revision: https://github.com/php/pecl-database-dbase/commit/1055dd4788efea0d46ee0a0a1bf1dc0a89c7941f
Log: Fix #78070: dbase functions may modify passed array
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 07:01:28 2024 UTC