Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. ticho@penny:~$ grep --context 1 malloc supp
  2. match-leak-kinds: definite
  3. fun:malloc
  4. obj:/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
  5. --
  6. match-leak-kinds: possible
  7. fun:malloc
  8. fun:g_malloc
  9. fun:g_slice_alloc
  10. --
  11. fun:calloc
  12. fun:g_malloc0
  13. obj:/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4800.1
  14. --
  15. fun:calloc
  16. fun:g_malloc0
  17. obj:/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4800.1
  18. --
  19. match-leak-kinds: possible
  20. fun:malloc
  21. fun:g_malloc
  22. fun:g_slice_alloc
  23. ticho@penny:~$ grep -A 1 -B 1 malloc supp
  24. match-leak-kinds: definite
  25. fun:malloc
  26. obj:/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.8.0
  27. --
  28. match-leak-kinds: possible
  29. fun:malloc
  30. fun:g_malloc
  31. fun:g_slice_alloc
  32. --
  33. fun:calloc
  34. fun:g_malloc0
  35. obj:/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4800.1
  36. --
  37. fun:calloc
  38. fun:g_malloc0
  39. obj:/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.4800.1
  40. --
  41. match-leak-kinds: possible
  42. fun:malloc
  43. fun:g_malloc
  44. fun:g_slice_alloc
  45. ticho@penny:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement