PHP  
 PHP_5_5
downloads | QA | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
 

Valgrind Report for ext/dba/tests/dba_db4_018.phpt ('DBA DB4 with persistent connections')

Script

1: <?php
2:
3: $handler 
"db4";
4: require_once(
dirname(__FILE__) .'/test.inc');
5: echo 
"database handler: $handler\n";
6:
7: echo 
"Test 1\n";
8:
$db_file1 dba_popen($db_filename'n''flatfile');
9:
dba_insert("key1""This is a test insert 1"$db_file1);
10: echo 
dba_fetch("key1"$db_file1), "\n";
11:
12:
13: echo 
"Test 2\n";
14:
$db_file2 dba_popen($db_filename'n''flatfile');
15: if (
$db_file1 === $db_file2) {
16:     echo 
"resources are the same\n";
17: } else {
18:     echo 
"resources are different\n";
19: }
20:
21:
22: echo 
"Test 3 - fetch both rows from second resource\n";
23:
dba_insert("key2""This is a test insert 2"$db_file2);
24: echo 
dba_fetch("key1"$db_file2), "\n";
25: echo 
dba_fetch("key2"$db_file2), "\n";
26:
27:
28: echo 
"Test 4 - fetch both rows from first resource\n";
29: echo 
dba_fetch("key1"$db_file1), "\n";
30: echo 
dba_fetch("key2"$db_file1), "\n";
31:
32: echo 
"Test 5 - close 2nd resource\n";
33:
dba_close($db_file2);
34:
var_dump($db_file1);
35:
var_dump($db_file2);
36:
37: echo 
"Test 6 - query after closing 2nd resource\n";
38: echo 
dba_fetch("key1"$db_file1), "\n";
39: echo 
dba_fetch("key2"$db_file1), "\n";
40:
41:
?>
42:
===DONE===
43:

Report

==27236== Invalid read of size 8
==27236==    at 0x675D55: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==    by 0xFF2B21: main (php_cli.c:1377)
==27236==  Address 0x1534cb08 is 56 bytes inside a block of size 88 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0x6720CE: dba_close (dba.c:423)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236== 
==27236== Invalid read of size 8
==27236==    at 0x679EE0: dba_fetch_flatfile (dba_flatfile.c:67)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==    by 0xFF2B21: main (php_cli.c:1377)
==27236==  Address 0x1534cad0 is 0 bytes inside a block of size 88 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0x6720CE: dba_close (dba.c:423)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236== 
==27236== Invalid read of size 8
==27236==    at 0x67D147: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==    by 0xFF2B21: main (php_cli.c:1377)
==27236==  Address 0x1534d3a0 is 16 bytes inside a block of size 48 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0x679E61: dba_close_flatfile (dba_flatfile.c:59)
==27236==    by 0x671E7D: dba_close (dba.c:401)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236== 
==27236== Invalid read of size 4
==27236==    at 0xD5B144: _php_stream_seek (streams.c:1271)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==  Address 0x1534cf18 is 120 bytes inside a block of size 224 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0xD58AB9: _php_stream_free (streams.c:557)
==27236==    by 0x671FF4: dba_close (dba.c:415)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236== 
==27236== Invalid read of size 4
==27236==    at 0xD5B17B: _php_stream_seek (streams.c:1277)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==  Address 0x1534cf38 is 152 bytes inside a block of size 224 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0xD58AB9: _php_stream_free (streams.c:557)
==27236==    by 0x671FF4: dba_close (dba.c:415)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236== 
==27236== Invalid read of size 8
==27236==    at 0xD5B2AC: _php_stream_seek (streams.c:1288)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==  Address 0x1534cf40 is 160 bytes inside a block of size 224 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0xD58AB9: _php_stream_free (streams.c:557)
==27236==    by 0x671FF4: dba_close (dba.c:415)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236== 
==27236== Invalid read of size 8
==27236==    at 0xD5B397: _php_stream_seek (streams.c:1300)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==  Address 0x1534cea0 is 0 bytes inside a block of size 224 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0xD58AB9: _php_stream_free (streams.c:557)
==27236==    by 0x671FF4: dba_close (dba.c:415)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236== 
==27236== Invalid read of size 4
==27236==    at 0xD5B3C0: _php_stream_seek (streams.c:1300)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==  Address 0x1534cf38 is 152 bytes inside a block of size 224 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0xD58AB9: _php_stream_free (streams.c:557)
==27236==    by 0x671FF4: dba_close (dba.c:415)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236== 
==27236== Invalid read of size 8
==27236==    at 0xD5B3EA: _php_stream_seek (streams.c:1303)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==  Address 0x1534cec8 is 40 bytes inside a block of size 224 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0xD58AB9: _php_stream_free (streams.c:557)
==27236==    by 0x671FF4: dba_close (dba.c:415)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236== 
==27236== Invalid read of size 8
==27236==    at 0xD5B470: _php_stream_seek (streams.c:1313)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==    by 0xFF1374: do_cli (php_cli.c:993)
==27236==  Address 0x1534cea0 is 0 bytes inside a block of size 224 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0xD58AB9: _php_stream_free (streams.c:557)
==27236==    by 0x671FF4: dba_close (dba.c:415)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236== 
==27236== Invalid read of size 8
==27236==    at 0xD65EE3: php_stdiop_seek (plain_wrapper.c:454)
==27236==    by 0xD5B4A1: _php_stream_seek (streams.c:1313)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==  Address 0x1534cea8 is 8 bytes inside a block of size 224 free'd
==27236==    at 0x4C27350: free (vg_replace_malloc.c:446)
==27236==    by 0xD58AB9: _php_stream_free (streams.c:557)
==27236==    by 0x671FF4: dba_close (dba.c:415)
==27236==    by 0x672149: dba_close_rsrc (dba.c:433)
==27236==    by 0xE2B8FC: plist_entry_destructor (zend_list.c:209)
==27236==    by 0xE2711A: zend_hash_apply_deleter (zend_hash.c:650)
==27236==    by 0xE2766B: zend_hash_apply_with_argument (zend_hash.c:743)
==27236==    by 0x6721DC: dba_close_pe_rsrc (dba.c:450)
==27236==    by 0xE2B792: list_entry_destructor (zend_list.c:183)
==27236==    by 0xE269C2: zend_hash_del_key_or_index (zend_hash.c:531)
==27236==    by 0xE2AF1D: _zend_list_delete (zend_list.c:57)
==27236==    by 0x6756BD: zif_dba_close (dba.c:968)
==27236== 
==27236== Invalid read of size 1
==27236==    at 0xD65EEF: php_stdiop_seek (plain_wrapper.c:459)
==27236==    by 0xD5B4A1: _php_stream_seek (streams.c:1313)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==  Address 0xc is not stack'd, malloc'd or (recently) free'd
==27236== 
==27236== 
==27236== Process terminating with default action of signal 11 (SIGSEGV)
==27236==  Access not within mapped region at address 0xC
==27236==    at 0xD65EEF: php_stdiop_seek (plain_wrapper.c:459)
==27236==    by 0xD5B4A1: _php_stream_seek (streams.c:1313)
==27236==    by 0x67D15C: flatfile_findkey (flatfile.c:172)
==27236==    by 0x67CB6A: flatfile_fetch (flatfile.c:90)
==27236==    by 0x679F0E: dba_fetch_flatfile (dba_flatfile.c:70)
==27236==    by 0x675D83: zif_dba_fetch (dba.c:1019)
==27236==    by 0xE70D6B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==27236==    by 0xE7AD7B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==27236==    by 0xE6E9A8: execute_ex (zend_vm_execute.h:356)
==27236==    by 0xE6F53A: zend_execute (zend_vm_execute.h:381)
==27236==    by 0xE0CA32: zend_execute_scripts (zend.c:1316)
==27236==    by 0xD3043F: php_execute_script (main.c:2479)
==27236==  If you believe this happened as a result of a stack
==27236==  overflow in your program's main thread (unlikely but
==27236==  possible), you can try to increase the size of the
==27236==  main thread stack using the --main-stacksize= flag.
==27236==  The main thread stack size used in this run was 33554432.

 

Generated at Wed, 15 May 2013 22:03:26 +0000 (7 days ago)

Copyright © 2005-2013 The PHP Group
All rights reserved.