Skip to content
Snippets Groups Projects
  1. Jan 17, 2012
  2. Jan 13, 2012
  3. Jan 12, 2012
  4. Jan 11, 2012
  5. Dec 28, 2011
  6. Dec 23, 2011
  7. Dec 19, 2011
  8. Dec 16, 2011
  9. Dec 15, 2011
  10. Dec 14, 2011
  11. Dec 12, 2011
  12. Dec 09, 2011
    • Konstantin Osipov's avatar
      Continue improving valgrind run: add recommended luajit suppressions. · 3db3fa84
      Konstantin Osipov authored
      Continue improving valgrind run: add recommended luajit suppressions.
      3db3fa84
    • Konstantin Osipov's avatar
      Workaround for a valgrind warning on 64-bit systems. · f1560798
      Konstantin Osipov authored
      Workaround a valgrind warning in strtod on 64 bit systems.
      
      On 64-bit systems, strtod uses an optimized version of
      strcasecmp to find out whether or not a string represents
      a number.
      
      This version uses int (8 byte) comparison. If the string
      in turn is less than 8 bytes, or is not aligned around 8 byte
      boundary, uninitialized memory can be accessed.
      
      Work this around with a simple test (this is lame and
      incomplete, but covers our cases. In future either
      this in valgrind will be gone, or our code will change,
      or we add a suppression).
      f1560798
Loading