1. 15 May, 2013 1 commit
  2. 03 May, 2013 1 commit
  3. 24 Mar, 2013 1 commit
  4. 23 Mar, 2013 1 commit
  5. 08 Mar, 2013 2 commits
  6. 17 Jan, 2013 1 commit
  7. 13 Jan, 2013 3 commits
  8. 03 Jan, 2013 1 commit
  9. 28 Dec, 2012 1 commit
  10. 20 Dec, 2012 1 commit
  11. 04 Dec, 2012 1 commit
  12. 11 Nov, 2012 1 commit
  13. 02 Nov, 2012 1 commit
  14. 12 Oct, 2012 1 commit
  15. 08 Oct, 2012 1 commit
  16. 07 Oct, 2012 1 commit
  17. 06 Oct, 2012 1 commit
  18. 01 Oct, 2012 1 commit
  19. 04 Sep, 2012 3 commits
  20. 15 Aug, 2012 1 commit
  21. 07 Aug, 2012 1 commit
  22. 30 Jul, 2012 1 commit
  23. 28 Jul, 2012 2 commits
  24. 04 Jul, 2012 2 commits
  25. 20 Jun, 2012 1 commit
  26. 14 Jun, 2012 1 commit
  27. 13 Jun, 2012 1 commit
  28. 07 May, 2012 1 commit
  29. 04 Apr, 2012 1 commit
  30. 28 Mar, 2012 1 commit
  31. 16 Mar, 2012 1 commit
    • Antonio Ospite's avatar
      x11grab: fix a memory leak exposed by valgrind · d3958ab4
      Antonio Ospite authored
      When using "-f x11grab -i :0.0" valgrind reports a definitely lost
      memory block with this message:
      
      ==31544== 5 bytes in 1 blocks are definitely lost in loss record 1 of 2
      ==31544==    at 0x4026E68: memalign (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
      ==31544==    by 0x4026F17: posix_memalign (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
      ==31544==    by 0x60D399A: av_malloc (in /usr/lib/x86_64-linux-gnu/libavutil.so.51.22.1)
      ==31544==    by 0x60D3A70: av_strdup (in /usr/lib/x86_64-linux-gnu/libavutil.so.51.22.1)
      ==31544==    by 0x4A2BE58: ??? (in /usr/lib/x86_64-linux-gnu/libavdevice.so.53.2.0)
      ==31544==    by 0x506D29E: avformat_open_input (in /usr/lib/x86_64-linux-gnu/libavformat.so.53.21.0)
      ==31544==    by 0x400A80: main (in /home/ao2/WIP/am7xxx-play/tests/a.out)
      
      The 5 bytes lost are the ones from param = av_strdup(":0.0"), so let's
      free param in the exit path.
      
      Also check the av_strdup() return value.
      
      Note: calling av_free(param) even when av_strdup() fails and param is
      NULL is OK and keeps the code simpler without adding another label to
      skip av_free().
      Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
      d3958ab4
  32. 04 Mar, 2012 1 commit
  33. 28 Feb, 2012 1 commit