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
==20625== Invalid read of size 8
==20625== at 0x6588B3: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d61158 is 56 bytes inside a block of size 88 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0x654DE0: dba_close (dba.c:417)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625==
==20625== Invalid read of size 8
==20625== at 0x65C963: dba_fetch_flatfile (dba_flatfile.c:67)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d61120 is 0 bytes inside a block of size 88 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0x654DE0: dba_close (dba.c:417)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625==
==20625== Invalid read of size 8
==20625== at 0x65FBA7: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d61970 is 16 bytes inside a block of size 48 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0x65C8E4: dba_close_flatfile (dba_flatfile.c:59)
==20625== by 0x654B8F: dba_close (dba.c:395)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625==
==20625== Invalid read of size 4
==20625== at 0xCE0F48: _php_stream_seek (streams.c:1205)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d61568 is 120 bytes inside a block of size 216 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0xCDE8C3: _php_stream_free (streams.c:491)
==20625== by 0x654D06: dba_close (dba.c:409)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625==
==20625== Invalid read of size 4
==20625== at 0xCE0F7F: _php_stream_seek (streams.c:1211)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d61588 is 152 bytes inside a block of size 216 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0xCDE8C3: _php_stream_free (streams.c:491)
==20625== by 0x654D06: dba_close (dba.c:409)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625==
==20625== Invalid read of size 8
==20625== at 0xCE10B0: _php_stream_seek (streams.c:1222)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d61590 is 160 bytes inside a block of size 216 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0xCDE8C3: _php_stream_free (streams.c:491)
==20625== by 0x654D06: dba_close (dba.c:409)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625==
==20625== Invalid read of size 8
==20625== at 0xCE119B: _php_stream_seek (streams.c:1234)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d614f0 is 0 bytes inside a block of size 216 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0xCDE8C3: _php_stream_free (streams.c:491)
==20625== by 0x654D06: dba_close (dba.c:409)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625==
==20625== Invalid read of size 4
==20625== at 0xCE11C4: _php_stream_seek (streams.c:1234)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d61588 is 152 bytes inside a block of size 216 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0xCDE8C3: _php_stream_free (streams.c:491)
==20625== by 0x654D06: dba_close (dba.c:409)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625==
==20625== Invalid read of size 8
==20625== at 0xCE11EE: _php_stream_seek (streams.c:1237)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d61518 is 40 bytes inside a block of size 216 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0xCDE8C3: _php_stream_free (streams.c:491)
==20625== by 0x654D06: dba_close (dba.c:409)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625==
==20625== Invalid read of size 8
==20625== at 0xCE1274: _php_stream_seek (streams.c:1247)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d614f0 is 0 bytes inside a block of size 216 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0xCDE8C3: _php_stream_free (streams.c:491)
==20625== by 0x654D06: dba_close (dba.c:409)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625==
==20625== Invalid read of size 8
==20625== at 0xCEBF36: php_stdiop_seek (plain_wrapper.c:449)
==20625== by 0xCE12A5: _php_stream_seek (streams.c:1247)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0x14d614f8 is 8 bytes inside a block of size 216 free'd
==20625== at 0x4C27350: free (vg_replace_malloc.c:446)
==20625== by 0xCDE8C3: _php_stream_free (streams.c:491)
==20625== by 0x654D06: dba_close (dba.c:409)
==20625== by 0x654E5B: dba_close_rsrc (dba.c:427)
==20625== by 0xD867D6: plist_entry_destructor (zend_list.c:210)
==20625== by 0xD8252E: zend_hash_apply_deleter (zend_hash.c:612)
==20625== by 0xD82A41: zend_hash_apply_with_argument (zend_hash.c:701)
==20625== by 0x654EE3: dba_close_pe_rsrc (dba.c:444)
==20625== by 0xD86670: list_entry_destructor (zend_list.c:184)
==20625== by 0xD81E22: zend_hash_del_key_or_index (zend_hash.c:500)
==20625== by 0xD85E19: _zend_list_delete (zend_list.c:58)
==20625== by 0x658293: zif_dba_close (dba.c:974)
==20625==
==20625== Invalid read of size 1
==20625== at 0xCEBF42: php_stdiop_seek (plain_wrapper.c:454)
==20625== by 0xCE12A5: _php_stream_seek (streams.c:1247)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== Address 0xc is not stack'd, malloc'd or (recently) free'd
==20625==
==20625==
==20625== Process terminating with default action of signal 11 (SIGSEGV)
==20625== Access not within mapped region at address 0xC
==20625== at 0xCEBF42: php_stdiop_seek (plain_wrapper.c:454)
==20625== by 0xCE12A5: _php_stream_seek (streams.c:1247)
==20625== by 0x65FBBC: flatfile_findkey (flatfile.c:173)
==20625== by 0x65F5CA: flatfile_fetch (flatfile.c:91)
==20625== by 0x65C991: dba_fetch_flatfile (dba_flatfile.c:70)
==20625== by 0x6588DE: zif_dba_fetch (dba.c:1025)
==20625== by 0xDB8BD2: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:322)
==20625== by 0xDBEEB1: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:1632)
==20625== by 0xDB7C17: execute (zend_vm_execute.h:107)
==20625== by 0xD6B0B7: zend_execute_scripts (zend.c:1259)
==20625== by 0xCB7000: php_execute_script (main.c:2316)
==20625== by 0xEAE410: main (php_cli.c:1189)
==20625== If you believe this happened as a result of a stack
==20625== overflow in your program's main thread (unlikely but
==20625== possible), you can try to increase the size of the
==20625== main thread stack using the --main-stacksize= flag.
==20625== The main thread stack size used in this run was 33554432.
Generated at Sun, 19 May 2013 20:27:25 +0000 (34 hours ago)
|