Here's what I got after trying to select an airport in the list through the menus :

$ fgfs
Segmentation fault (core dumped)
$ gdb fgfs
(...)
(gdb) core-file core.1888 
Core was generated by `fgfs'.
Program terminated with signal 11, Segmentation fault.
(...)
#0  0x40426348 in mallopt () from /lib/i686/libc.so.6
(gdb) backtrace 
#0  0x40426348 in mallopt () from /lib/i686/libc.so.6
#1  0x404262a2 in mallopt () from /lib/i686/libc.so.6
#2  0x40424e6f in free () from /lib/i686/libc.so.6
#3  0x4035cda1 in operator delete(void*) () from /usr/lib/libstdc++.so.5
#4  0x4035cdfd in operator delete[](void*) () from /usr/lib/libstdc++.so.5
#5  0x082a9a82 in ~AirportList (this=0xc67d4e8) at AirportList.cxx:40
(gdb) list
40          delete [] _content;
41      }
42      
43      char *
44      AirportList::getStringValue ()
45      {
46          return (char *)_airports->getAirport(getIntegerValue())->id.c_str();
47      }
48      
49      // end of AirportList.cxx

-- 
Jorge Van Hemelryck

_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to