Advertisement
Guest User

Untitled

a guest
Apr 13th, 2018
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GDB 0.62 KB | None | 0 0
  1. [New LWP 22267]
  2. Core was generated by `./a.out'.
  3. Program terminated with signal SIGSEGV, Segmentation fault.
  4. #0  0x00005583c87ee252 in _hash (hash_table=0x7ffd4f5b1910, HASH_TABLE_SIZE=0x100000, val=0x891ff76, find_empty=0x1, collision_count=@0x7ffd4f5b1880: 0x4000) at double.cpp:16
  5. 16      while (hash_table[(index = (h1 + (collision_count * h2)) % HASH_TABLE_SIZE)] != val_to_find)
  6. gdb-peda$ info locals
  7. h1 = 0x1ff76
  8. h2 = 0x20000
  9. val_to_find = 0x0
  10. index = 0xfff1ff76
  11. gdb-peda$ info args
  12. hash_table = 0x7ffd4f5b1910
  13. HASH_TABLE_SIZE = 0x100000
  14. val = 0x891ff76
  15. find_empty = 0x1
  16. collision_count = @0x7ffd4f5b1880: 0x4000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement