Skip to content
代码片段 群组 项目
  1. 1月 19, 2016
  2. 12月 10, 2015
  3. 11月 22, 2015
  4. 11月 18, 2015
  5. 10月 30, 2015
  6. 10月 24, 2015
    • Marius Gedminas's avatar
      Fix buffer overrun in libunistring builds · 7a5af2ec
      Marius Gedminas 创作于
      libunistring uses UTF-8 strings without a trailing NUL byte.  We're
      passing such strings to tracker_parser_unaccent_nfkd_string() from
      function_sparql_unaccent() in the sqlite interface.  If the string has
      no accented characters, writing a NUL byte at the end will step out of
      bounds.  This causes memory corruption and crashes.
      
      The other caller of tracker_parser_unaccent_nfkd_string() is
      process_word_utf8(), and it looks like it wants a trailing NUL, so let's
      add it there.
      
      There are no more callers of the libunistring version of
      tracker_parser_unaccent_nfkd_string().
      
      (For extra confusion, the libicu version of
      tracker_parser_unaccent_nfkd_string() deals with U+0000-terminated
      UTF-16 strings.)
      
      Should fix https://bugzilla.gnome.org/show_bug.cgi?id=746195
      7a5af2ec
  7. 10月 21, 2015
  8. 4月 10, 2015
  9. 4月 09, 2015
  10. 3月 22, 2015
  11. 3月 16, 2015
  12. 3月 15, 2015
  13. 3月 08, 2015
  14. 1月 18, 2015
  15. 1月 13, 2015
    • Debarshi Ray's avatar
      libtracker-miner: Restrict the amount of data that is logged for errors · f0e29525
      Debarshi Ray 创作于
      SPARQL update strings can be very long if the entire text of a document
      is being stored. Dumping these huge strings to the log eats up disk
      space and makes them harder to follow.
      
      However, often, the occurence of such an error indicates a broken
      extractor. In those cases, knowing part of the SPARQL can help in
      identifying the file that triggered the error.
      
      Usually the "nie:plainTextContent" property is the last one in the
      string, so we truncate the error messages at the first occurance of
      this property to achieve the best of both worlds.
      
      https://bugzilla.gnome.org/show_bug.cgi?id=735406
      f0e29525
  16. 12月 31, 2014
    • Sam Thursfield's avatar
      sandbox: Change how content directory is specified · a0d212b7
      Sam Thursfield 创作于
      Firstly, allow specifying multiple --content options, and allow
      specifying --content-non-recursive if you really want as well.
      
      Also, don't generate an XDG user directories config. It seems a bit
      weird to be doing this and setting each directory to the same location.
      a0d212b7
  17. 12月 30, 2014
  18. 12月 27, 2014
  19. 12月 24, 2014
  20. 12月 21, 2014
  21. 12月 20, 2014
  22. 12月 18, 2014
  23. 12月 15, 2014
  24. 12月 12, 2014
  25. 12月 10, 2014
加载中