1. 03 Mar, 2015 1 commit
  2. 21 Jan, 2015 1 commit
  3. 01 Jan, 2015 1 commit
  4. 19 Feb, 2014 1 commit
  5. 24 Jan, 2014 1 commit
  6. 23 Jan, 2014 1 commit
  7. 13 Jan, 2014 1 commit
  8. 17 Oct, 2013 1 commit
    • Max Kellermann's avatar
      fs/Path: rename to AllocatedPath · abfbd553
      Max Kellermann authored
      The new class Path only holds a string pointer without being
      responsible for allocation/deallocation.  The FileSystem.hxx library
      accepts Path arguments instead of AllocatedPath, to avoid forcing
      callers to allocate another string object.
      abfbd553
  9. 15 Oct, 2013 1 commit
  10. 12 Sep, 2013 1 commit
  11. 05 Sep, 2013 2 commits
  12. 04 Sep, 2013 1 commit
  13. 07 Aug, 2013 2 commits
  14. 30 Jan, 2013 3 commits
  15. 29 Jan, 2013 1 commit
  16. 07 Jan, 2013 1 commit
  17. 09 Sep, 2011 7 commits
  18. 29 Mar, 2011 1 commit
  19. 29 Jan, 2011 1 commit
  20. 25 Sep, 2010 1 commit
  21. 30 May, 2010 1 commit
  22. 13 Apr, 2010 2 commits
  23. 01 Jan, 2010 1 commit
  24. 14 Dec, 2009 1 commit
  25. 26 Oct, 2009 1 commit
  26. 13 Oct, 2009 1 commit
  27. 24 Sep, 2009 1 commit
    • Max Kellermann's avatar
      conf: handle fatal errors with GError · 06d5d4b0
      Max Kellermann authored
      Don't call g_error(), which will abort the process and dump core.
      
      This patch does not affect all the config_get_X() functions.  These
      need some more refactoring.
      06d5d4b0
  28. 24 Aug, 2009 1 commit
  29. 19 Jul, 2009 1 commit
    • Michal Nazarewicz's avatar
      conf: replaced gcc "const" attribute with "pure" · 03e43356
      Michal Nazarewicz authored
      The functions were not "const" (they examined values pointed
      by arguments passed to them, quoting gcc's doc: "Note that
      a function that has pointer arguments and examines the data
      pointed to must _not_ be declared 'const'.") but rather
      "pure" and still not all of them.
      
      Note also, that even some of the functions declared "pure"
      are not pure, however, due to reasons stated in source code
      the attribute has been kept.
      03e43356