Changes between Initial Version and Version 4 of Ticket #41248
- Timestamp:
- Nov 7, 2013, 2:42:27 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #41248
- Property Owner changed from macports-tickets@… to raimue@…
- Property Keywords bash segfault lldb core removed
- Property Port bash added
-
Ticket #41248 – Description
initial v4 1 1 When executing any undefined command in bash 4.2.45_2, I get a segmentation fault: 11 2 2 3 {{{ 3 4 $ echo "test" 4 5 test 5 6 $ dummy 6 7 Segmentation fault: 11 8 }}} 7 9 8 10 I generated a core dump for this segmentation fault, here are the details I extracted from it : 9 11 12 {{{ 10 13 $ lldb 11 14 … … 49 52 frame #22: 0x000000010e983052 bash`main + 5994 50 53 frame #23: 0x00007fff8c5905fd libdyld.dylib`start + 1 54 }}} 51 55 52 56 Once I exit lldb, the issue is solved and now undefined command execution doesn't segfault, but fails properly : 53 57 58 {{{ 54 59 $ dummy 55 60 -bash: dummy : command not found 61 }}} 56 62