Advertisement
Guest User

Untitled

a guest
Aug 10th, 2011
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. [jakob@one pacman-git]$ sudo gdb pacman
  2. GNU gdb (GDB) 7.3
  3. Copyright (C) 2011 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 "i686-pc-linux-gnu".
  9. For bug reporting instructions, please see:
  10. <http://www.gnu.org/software/gdb/bugs/>...
  11. Reading symbols from /usr/bin/pacman...done.
  12. (gdb) run -Syy
  13. Starting program: /usr/bin/pacman -Syy
  14. [Thread debugging using libthread_db enabled]
  15. warning: config file /etc/pacman.conf, line 68: directive 'VerifySig' in section 'core' not recognized.
  16. warning: config file /etc/pacman.conf, line 72: directive 'VerifySig' in section 'extra' not recognized.
  17. warning: config file /etc/pacman.conf, line 80: directive 'VerifySig' in section 'community' not recognized.
  18. :: Synchronizing package databases...
  19. [New Thread 0xb78e0b70 (LWP 6786)]
  20. [Thread 0xb78e0b70 (LWP 6786) exited]
  21. [New Thread 0xb78e0b70 (LWP 6787)]
  22. [Thread 0xb78e0b70 (LWP 6787) exited]
  23. core 35.7K 169.6K/s 00:00:00 [##################################################] 100%
  24. [New Thread 0xb78e0b70 (LWP 6788)]
  25. [Thread 0xb78e0b70 (LWP 6788) exited]
  26. extra 475.3K 657.5K/s 00:00:01 [##################################################] 100%
  27. [New Thread 0xb78e0b70 (LWP 6789)]
  28. [Thread 0xb78e0b70 (LWP 6789) exited]
  29. community 452.2K 595.2K/s 00:00:01 [##################################################] 100%
  30.  
  31. Program received signal SIGSEGV, Segmentation fault.
  32. 0xb7fa76c3 in curl_progress (file=0x807b5e0, dltotal=0, dlnow=0, ultotal=0, ulnow=0) at dload.c:90
  33. 90 if(payload->handle->dlcb == NULL) {
  34. (gdb) bt
  35. #0 0xb7fa76c3 in curl_progress (file=0x807b5e0, dltotal=0, dlnow=0, ultotal=0, ulnow=0) at dload.c:90
  36. #1 0xb7dd8776 in Curl_pgrsUpdate () from /usr/lib/libcurl.so.4
  37. #2 0xb7e12275 in Curl_pp_easy_statemach () from /usr/lib/libcurl.so.4
  38. #3 0xb7de2088 in ?? () from /usr/lib/libcurl.so.4
  39. #4 0xb7de21a9 in ?? () from /usr/lib/libcurl.so.4
  40. #5 0xb7de8547 in Curl_disconnect () from /usr/lib/libcurl.so.4
  41. #6 0xb7de871c in ?? () from /usr/lib/libcurl.so.4
  42. #7 0xb7dea9cf in Curl_close () from /usr/lib/libcurl.so.4
  43. #8 0xb7df9bdf in curl_easy_cleanup () from /usr/lib/libcurl.so.4
  44. #9 0xb7fa9815 in _alpm_handle_free (handle=0x8060a00) at handle.c:74
  45. #10 0xb7f99a0f in alpm_release (myhandle=0x8060a00) at alpm.c:121
  46. #11 0x08050399 in cleanup (ret=0) at pacman.c:266
  47. #12 0x0804b723 in main (argc=2, argv=0xbffffd14) at pacman.c:875
  48. (gdb) print payload
  49. $1 = (struct dload_payload *) 0x807b5e0
  50. (gdb) print payload->handle
  51. $2 = (alpm_handle_t *) 0x0
  52. (gdb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement