Advertisement
Guest User

Untitled

a guest
Mar 1st, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GDB 3.25 KB | None | 0 0
  1. ➜  .etterna gdb ./etterna
  2. GNU gdb (GDB) 8.2.1
  3. Copyright (C) 2018 Free Software Foundation, Inc.
  4. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  5. This is free software: you are free to change and redistribute it.
  6. There is NO WARRANTY, to the extent permitted by law.
  7. Type "show copying" and "show warranty" for details.
  8. This GDB was configured as "x86_64-pc-linux-gnu".
  9. Type "show configuration" for configuration details.
  10. For bug reporting instructions, please see:
  11. <http://www.gnu.org/software/gdb/bugs/>.
  12. Find the GDB manual and other documentation resources online at:
  13.     <http://www.gnu.org/software/gdb/documentation/>.
  14.  
  15. For help, type "help".
  16. Type "apropos word" to search for commands related to "word"...
  17. Reading symbols from ./etterna...done.
  18. (gdb) break CrashHandler::ForceCrash
  19. Breakpoint 1 at 0x98b6a0
  20. (gdb) run
  21. Starting program: /home/kangalioo/.etterna/etterna
  22. [Thread debugging using libthread_db enabled]
  23. Using host libthread_db library "/usr/lib/libthread_db.so.1".
  24. Etterna0.65.0
  25. Compiled 20190301 @ 14:04:24 (build b8e69ffa4e)
  26. Log starting 2019-03-01 15:05:51
  27.     Verbosity: 1
  28. libpng warning: Image width exceeds user limit in IHDR
  29. libpng warning: Image height exceeds user limit in IHDR
  30. libpng error: Invalid IHDR data
  31.  
  32. Program received signal SIGSEGV, Segmentation fault.
  33. 0x00007ffff4ee36fc in fread () from /usr/lib/libc.so.6
  34. (gdb) bt
  35. #0  0x00007ffff4ee36fc in fread () at /usr/lib/libc.so.6
  36. #1  0x00007ffff4122db6 in  () at /usr/lib/libpng16.so.16
  37. #2  0x00007ffff41292cf in  () at /usr/lib/libpng16.so.16
  38. #3  0x00007ffff411f8c0 in png_read_info () at /usr/lib/libpng16.so.16
  39. #4  0x00007ffff7f67920 in  () at /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so
  40. #5  0x00007ffff6f0f2a4 in gdk_pixbuf_new_from_file () at /usr/lib/libgdk_pixbuf-2.0.so.0
  41. #6  0x00007ffff1681d2a in  () at /usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
  42. #7  0x00007ffff71ebb3e in g_cache_insert () at /usr/lib/libglib-2.0.so.0
  43. #8  0x00007ffff1682af9 in  () at /usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
  44. #9  0x00007ffff1682bc2 in  () at /usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
  45. #10 0x00007ffff167f8f8 in  () at /usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
  46. #11 0x00007ffff16809eb in  () at /usr/lib/gtk-2.0/2.10.0/engines/libpixmap.so
  47. #12 0x00007ffff65c9b22 in  () at /usr/lib/libgtk-x11-2.0.so.0
  48. #13 0x00007ffff67091ea in  () at /usr/lib/libgtk-x11-2.0.so.0
  49. #14 0x00007ffff71273c5 in g_closure_invoke () at /usr/lib/libgobject-2.0.so.0
  50. #15 0x00007ffff7114348 in  () at /usr/lib/libgobject-2.0.so.0
  51. #16 0x00007ffff711801e in g_signal_emit_valist () at /usr/lib/libgobject-2.0.so.0
  52. #17 0x00007ffff7118a80 in g_signal_emit () at /usr/lib/libgobject-2.0.so.0
  53. #18 0x00007ffff66b1582 in gtk_widget_realize () at /usr/lib/libgtk-x11-2.0.so.0
  54. #19 0x00007ffff66b2928 in gtk_widget_set_parent () at /usr/lib/libgtk-x11-2.0.so.0
  55. #20 0x00007ffff64df848 in  () at /usr/lib/libgtk-x11-2.0.so.0
  56. #21 0x00007ffff7fb95e2 in Init () at /home/kangalioo/.etterna/GtkModule.so
  57. #22 0x0000555555b66766 in LoadingWindow_Gtk::Init() ()
  58. #23 0x0000555555b662e0 in LoadingWindow::Create() ()
  59. #24 0x0000555555906fa5 in sm_main(int, char**) ()
  60. #25 0x00007ffff4e96223 in __libc_start_main () at /usr/lib/libc.so.6
  61. #26 0x000055555590112e in _start ()
  62. (gdb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement