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
==8266== Invalid read of size 8
==8266== at 0x677269: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== by 0xFF4651: main (php_cli.c:1377)
==8266== Address 0x15351a68 is 56 bytes inside a block of size 88 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0x6735E2: dba_close (dba.c:423)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266==
==8266== Invalid read of size 8
==8266== at 0x67B3F4: dba_fetch_flatfile (dba_flatfile.c:67)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== by 0xFF4651: main (php_cli.c:1377)
==8266== Address 0x15351a30 is 0 bytes inside a block of size 88 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0x6735E2: dba_close (dba.c:423)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266==
==8266== Invalid read of size 8
==8266== at 0x67E65B: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== by 0xFF4651: main (php_cli.c:1377)
==8266== Address 0x15352300 is 16 bytes inside a block of size 48 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0x67B375: dba_close_flatfile (dba_flatfile.c:59)
==8266== by 0x673391: dba_close (dba.c:401)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266==
==8266== Invalid read of size 4
==8266== at 0xD5CC04: _php_stream_seek (streams.c:1271)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== Address 0x15351e78 is 120 bytes inside a block of size 224 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0xD5A579: _php_stream_free (streams.c:557)
==8266== by 0x673508: dba_close (dba.c:415)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266==
==8266== Invalid read of size 4
==8266== at 0xD5CC3B: _php_stream_seek (streams.c:1277)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== Address 0x15351e98 is 152 bytes inside a block of size 224 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0xD5A579: _php_stream_free (streams.c:557)
==8266== by 0x673508: dba_close (dba.c:415)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266==
==8266== Invalid read of size 8
==8266== at 0xD5CD6C: _php_stream_seek (streams.c:1288)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== Address 0x15351ea0 is 160 bytes inside a block of size 224 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0xD5A579: _php_stream_free (streams.c:557)
==8266== by 0x673508: dba_close (dba.c:415)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266==
==8266== Invalid read of size 8
==8266== at 0xD5CE57: _php_stream_seek (streams.c:1300)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== Address 0x15351e00 is 0 bytes inside a block of size 224 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0xD5A579: _php_stream_free (streams.c:557)
==8266== by 0x673508: dba_close (dba.c:415)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266==
==8266== Invalid read of size 4
==8266== at 0xD5CE80: _php_stream_seek (streams.c:1300)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== Address 0x15351e98 is 152 bytes inside a block of size 224 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0xD5A579: _php_stream_free (streams.c:557)
==8266== by 0x673508: dba_close (dba.c:415)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266==
==8266== Invalid read of size 8
==8266== at 0xD5CEAA: _php_stream_seek (streams.c:1303)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== Address 0x15351e28 is 40 bytes inside a block of size 224 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0xD5A579: _php_stream_free (streams.c:557)
==8266== by 0x673508: dba_close (dba.c:415)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266==
==8266== Invalid read of size 8
==8266== at 0xD5CF30: _php_stream_seek (streams.c:1313)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== by 0xFF2EA4: do_cli (php_cli.c:993)
==8266== Address 0x15351e00 is 0 bytes inside a block of size 224 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0xD5A579: _php_stream_free (streams.c:557)
==8266== by 0x673508: dba_close (dba.c:415)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266==
==8266== Invalid read of size 8
==8266== at 0xD679A3: php_stdiop_seek (plain_wrapper.c:454)
==8266== by 0xD5CF61: _php_stream_seek (streams.c:1313)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== Address 0x15351e08 is 8 bytes inside a block of size 224 free'd
==8266== at 0x4C27350: free (vg_replace_malloc.c:446)
==8266== by 0xD5A579: _php_stream_free (streams.c:557)
==8266== by 0x673508: dba_close (dba.c:415)
==8266== by 0x67365D: dba_close_rsrc (dba.c:433)
==8266== by 0xE2D3BC: plist_entry_destructor (zend_list.c:209)
==8266== by 0xE28BDA: zend_hash_apply_deleter (zend_hash.c:650)
==8266== by 0xE2912B: zend_hash_apply_with_argument (zend_hash.c:743)
==8266== by 0x6736F0: dba_close_pe_rsrc (dba.c:450)
==8266== by 0xE2D252: list_entry_destructor (zend_list.c:183)
==8266== by 0xE28482: zend_hash_del_key_or_index (zend_hash.c:531)
==8266== by 0xE2C9DD: _zend_list_delete (zend_list.c:57)
==8266== by 0x676BD1: zif_dba_close (dba.c:968)
==8266==
==8266== Invalid read of size 1
==8266== at 0xD679AF: php_stdiop_seek (plain_wrapper.c:459)
==8266== by 0xD5CF61: _php_stream_seek (streams.c:1313)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== Address 0xc is not stack'd, malloc'd or (recently) free'd
==8266==
==8266==
==8266== Process terminating with default action of signal 11 (SIGSEGV)
==8266== Access not within mapped region at address 0xC
==8266== at 0xD679AF: php_stdiop_seek (plain_wrapper.c:459)
==8266== by 0xD5CF61: _php_stream_seek (streams.c:1313)
==8266== by 0x67E670: flatfile_findkey (flatfile.c:172)
==8266== by 0x67E07E: flatfile_fetch (flatfile.c:90)
==8266== by 0x67B422: dba_fetch_flatfile (dba_flatfile.c:70)
==8266== by 0x677297: zif_dba_fetch (dba.c:1019)
==8266== by 0xE7289D: zend_do_fcall_common_helper_SPEC (zend_vm_execute.h:547)
==8266== by 0xE7C8AD: ZEND_DO_FCALL_SPEC_CONST_HANDLER (zend_vm_execute.h:2326)
==8266== by 0xE70468: execute_ex (zend_vm_execute.h:356)
==8266== by 0xE70FFA: zend_execute (zend_vm_execute.h:381)
==8266== by 0xE0E4F2: zend_execute_scripts (zend.c:1316)
==8266== by 0xD31EFF: php_execute_script (main.c:2479)
==8266== If you believe this happened as a result of a stack
==8266== overflow in your program's main thread (unlikely but
==8266== possible), you can try to increase the size of the
==8266== main thread stack using the --main-stacksize= flag.
==8266== The main thread stack size used in this run was 33554432.
Generated at Fri, 17 May 2013 23:23:52 +0000 (47 hours ago)
|