Advertisement
Guest User

Untitled

a guest
May 31st, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. $ gdb ./qtLoggerSample
  2. GNU gdb (GDB) 7.0.1-debian
  3. Copyright (C) 2009 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. Type "show copying"
  7. and "show warranty" for details.
  8. This GDB was configured as "x86_64-linux-gnu".
  9. For bug reporting instructions, please see:
  10. <http://www.gnu.org/software/gdb/bugs/>...
  11. Reading symbols from /home/ilya/projects/qtLogger/build/qtLoggerSample...done.
  12. (gdb) r
  13. Starting program: /home/ilya/projects/qtLogger/build/qtLoggerSample
  14. [Thread debugging using libthread_db enabled]
  15. startup
  16. _DEBUG
  17. QtLogger::QtLogger()
  18.  
  19. Program received signal SIGSEGV, Segmentation fault.
  20. 0x00007ffff7bdcd43 in QListData::isEmpty (this=0x603420) at /usr/include/qt4/QtCore/qlist.h:91
  21. 91 inline bool isEmpty() const { return d->end == d->begin; }
  22. (gdb) bt
  23. #0 0x00007ffff7bdcd43 in QListData::isEmpty (this=0x603420) at /usr/include/qt4/QtCore/qlist.h:91
  24. #1 0x00007ffff7bdcdde in QList<QString*>::isEmpty (this=0x603420) at /usr/include/qt4/QtCore/qlist.h:134
  25. #2 0x00007ffff7bdc502 in QtLogger (this=0x603240) at /home/ilya/projects/qtLogger/lib-qtLogger/src/libqtlogger.cpp:55
  26. #3 0x0000000000401231 in main (argc=1, argv=0x7fffffffe3c8) at /home/ilya/projects/qtLogger/src/main.cpp:22
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement