1. 18 Sep, 2010 2 commits
  2. 17 Sep, 2010 2 commits
  3. 15 Sep, 2010 2 commits
  4. 13 Sep, 2010 1 commit
  5. 10 Sep, 2010 1 commit
  6. 09 Sep, 2010 1 commit
  7. 08 Sep, 2010 2 commits
  8. 07 Sep, 2010 2 commits
  9. 04 Sep, 2010 25 commits
  10. 02 Sep, 2010 2 commits
    • Martin Sustrik's avatar
      Merge branch 'maint' · 0a1f7e35
      Martin Sustrik authored
      * maint:
        Prior to this patch prefix_tree asserts.
        Fix for signaler_t on HP-UX and AIX platforms
        Mikael Kjaer added to AUTHORS
      
      Conflicts:
      	src/trie.cpp
      0a1f7e35
    • Jon Dyte's avatar
      Prior to this patch prefix_tree asserts. · 14853c2d
      Jon Dyte authored
      This is because as it adds the 255th element at a node it attempts to calculate
      the count member var which is an unsigned char via count = (255 -0) + 1; and
      pass the result to realloc. Unfortunately the result is zero and realloc returns
      null; the prefix_tree asserts. I have fixed it by making the count an unsigned
      short.
      14853c2d