Valgrind Report for ext/dba/tests/dba015.phpt ('DBA with persistent connections')
Script
1:
<?php 2: 3: $handler = "flatfile"; 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
==20783== Invalid read of size 8
==20783== at 0x675D71: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== by 0xFF31D1: main (php_cli.c:1377)
==20783== Address 0x1534ca58 is 56 bytes inside a block of size 88 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0x6720EA: dba_close (dba.c:423)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783==
==20783== Invalid read of size 8
==20783== at 0x679EFC: dba_fetch_flatfile (dba_flatfile.c:67)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== by 0xFF31D1: main (php_cli.c:1377)
==20783== Address 0x1534ca20 is 0 bytes inside a block of size 88 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0x6720EA: dba_close (dba.c:423)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783==
==20783== Invalid read of size 8
==20783== at 0x67D163: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== by 0xFF31D1: main (php_cli.c:1377)
==20783== Address 0x1534d2f0 is 16 bytes inside a block of size 48 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0x679E7D: dba_close_flatfile (dba_flatfile.c:59)
==20783== by 0x671E99: dba_close (dba.c:401)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783==
==20783== Invalid read of size 4
==20783== at 0xD5B738: _php_stream_seek (streams.c:1271)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== Address 0x1534ce68 is 120 bytes inside a block of size 224 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0xD590AD: _php_stream_free (streams.c:557)
==20783== by 0x672010: dba_close (dba.c:415)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783==
==20783== Invalid read of size 4
==20783== at 0xD5B76F: _php_stream_seek (streams.c:1277)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== Address 0x1534ce88 is 152 bytes inside a block of size 224 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0xD590AD: _php_stream_free (streams.c:557)
==20783== by 0x672010: dba_close (dba.c:415)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783==
==20783== Invalid read of size 8
==20783== at 0xD5B8A0: _php_stream_seek (streams.c:1288)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== Address 0x1534ce90 is 160 bytes inside a block of size 224 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0xD590AD: _php_stream_free (streams.c:557)
==20783== by 0x672010: dba_close (dba.c:415)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783==
==20783== Invalid read of size 8
==20783== at 0xD5B98B: _php_stream_seek (streams.c:1300)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== Address 0x1534cdf0 is 0 bytes inside a block of size 224 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0xD590AD: _php_stream_free (streams.c:557)
==20783== by 0x672010: dba_close (dba.c:415)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783==
==20783== Invalid read of size 4
==20783== at 0xD5B9B4: _php_stream_seek (streams.c:1300)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== Address 0x1534ce88 is 152 bytes inside a block of size 224 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0xD590AD: _php_stream_free (streams.c:557)
==20783== by 0x672010: dba_close (dba.c:415)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783==
==20783== Invalid read of size 8
==20783== at 0xD5B9DE: _php_stream_seek (streams.c:1303)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== Address 0x1534ce18 is 40 bytes inside a block of size 224 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0xD590AD: _php_stream_free (streams.c:557)
==20783== by 0x672010: dba_close (dba.c:415)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783==
==20783== Invalid read of size 8
==20783== at 0xD5BA64: _php_stream_seek (streams.c:1313)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== by 0xFF1A24: do_cli (php_cli.c:993)
==20783== Address 0x1534cdf0 is 0 bytes inside a block of size 224 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0xD590AD: _php_stream_free (streams.c:557)
==20783== by 0x672010: dba_close (dba.c:415)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783==
==20783== Invalid read of size 8
==20783== at 0xD664D7: php_stdiop_seek (plain_wrapper.c:454)
==20783== by 0xD5BA95: _php_stream_seek (streams.c:1313)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== Address 0x1534cdf8 is 8 bytes inside a block of size 224 free'd
==20783== at 0x4C27350: free (vg_replace_malloc.c:446)
==20783== by 0xD590AD: _php_stream_free (streams.c:557)
==20783== by 0x672010: dba_close (dba.c:415)
==20783== by 0x672165: dba_close_rsrc (dba.c:433)
==20783== by 0xE2BEFC: plist_entry_destructor (zend_list.c:209)
==20783== by 0xE2771A: zend_hash_apply_deleter (zend_hash.c:650)
==20783== by 0xE27C6B: zend_hash_apply_with_argument (zend_hash.c:743)
==20783== by 0x6721F8: dba_close_pe_rsrc (dba.c:450)
==20783== by 0xE2BD92: list_entry_destructor (zend_list.c:183)
==20783== by 0xE26FC2: zend_hash_del_key_or_index (zend_hash.c:531)
==20783== by 0xE2B51D: _zend_list_delete (zend_list.c:57)
==20783== by 0x6756D9: zif_dba_close (dba.c:968)
==20783==
==20783== Invalid read of size 1
==20783== at 0xD664E3: php_stdiop_seek (plain_wrapper.c:459)
==20783== by 0xD5BA95: _php_stream_seek (streams.c:1313)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== Address 0xc is not stack'd, malloc'd or (recently) free'd
==20783==
==20783==
==20783== Process terminating with default action of signal 11 (SIGSEGV)
==20783== Access not within mapped region at address 0xC
==20783== at 0xD664E3: php_stdiop_seek (plain_wrapper.c:459)
==20783== by 0xD5BA95: _php_stream_seek (streams.c:1313)
==20783== by 0x67D178: flatfile_findkey (flatfile.c:172)
==20783== by 0x67CB86: flatfile_fetch (flatfile.c:90)
==20783== by 0x679F2A: dba_fetch_flatfile (dba_flatfile.c:70)
==20783== by 0x675D9F: zif_dba_fetch (dba.c:1019)
==20783== by 0xE7141B: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:543)
==20783== by 0xE7B42B: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2322)
==20783== by 0xE6F058: execute_ex (zend_vm_execute.h:356)
==20783== by 0xE6FBEA: zend_execute (zend_vm_execute.h:381)
==20783== by 0xE0D032: zend_execute_scripts (zend.c:1316)
==20783== by 0xD30A33: php_execute_script (main.c:2481)
==20783== If you believe this happened as a result of a stack
==20783== overflow in your program's main thread (unlikely but
==20783== possible), you can try to increase the size of the
==20783== main thread stack using the --main-stacksize= flag.
==20783== The main thread stack size used in this run was 33554432.
Generated at Thu, 23 May 2013 18:18:24 +0000 (29 hours ago)
|