View Revisions: Issue #2983
[ All Revisions ] [ Back to Issue ]
Summary | 0002983: 'g' key to play last mission is broken | ||
---|---|---|---|
Revision | 2013-12-20 23:18 by niffiwan | ||
Additional Information | Issue was introduced by r10159. $ git bisect good ad1bef534422ea5dedfab5cf4bf96aeb8981384b is the first bad commit commit ad1bef534422ea5dedfab5cf4bf96aeb8981384b Author: Goober5000 <Goober5000@387891d4-d844-0410-90c0-e4c51a9137d3> Date: Mon Nov 25 05:52:50 2013 +0000 some things don't need to be re-inited every time you pause the game git-svn-id: svn://svn.icculus.org/fs2open/trunk/fs2_open@10159 387891d4-d844-0410-90c0-e4c51a9137d3 Looks like a null pointer dereference here: Program received signal SIGSEGV, Segmentation fault. 0x00000000005540ff in hud_init_ballistic_index () at hud/hudtarget.cpp:1027 warning: Source file is more recent than executable. (gdb) bt # 0 0x00000000005540ff in hud_init_ballistic_index () at hud/hudtarget.cpp:1027 # 1 0x0000000000525218 in set_current_hud () at hud/hudparse.cpp:637 # 2 0x00000000004176f1 in game_enter_state (old_state=1, new_state=2) at freespace2/freespace.cpp:6083 # 3 0x00000000004bec5c in gameseq_set_state (new_state=2, override=1) at gamesequence/gamesequence.cpp:284 # 4 0x000000000041648d in game_process_event (current_state=1, event=2) at freespace2/freespace.cpp:5164 # 5 0x00000000004bf140 in gameseq_process_events () at gamesequence/gamesequence.cpp:399 # 6 0x0000000000418cd2 in game_main (cmdline=0x21e8360 "") at freespace2/freespace.cpp:7061 # 7 0x0000000000418ed2 in main (argc=1, argv=0x7fffffffe2b8) at freespace2/freespace.cpp:7195 (gdb) print Player_ship $1 = (ship *) 0x0 1021│ void hud_init_ballistic_index() 1022│ { 1023│ int i; 1024│ 1025│ // decide whether to realign HUD for ballistic primaries 1026│ ballistic_hud_index = 0; 1027├> for (i = 0; i < Player_ship->weapons.num_primary_banks; i++) |
||
Revision | 2013-12-20 23:09 by niffiwan | ||
Additional Information | Issue was introduced by r10159. $ git bisect good ad1bef534422ea5dedfab5cf4bf96aeb8981384b is the first bad commit commit ad1bef534422ea5dedfab5cf4bf96aeb8981384b Author: Goober5000 <Goober5000@387891d4-d844-0410-90c0-e4c51a9137d3> Date: Mon Nov 25 05:52:50 2013 +0000 some things don't need to be re-inited every time you pause the game git-svn-id: svn://svn.icculus.org/fs2open/trunk/fs2_open@10159 387891d4-d844-0410-90c0-e4c51a9137d3 |