1. 30 Sep, 2006 5 commits
  2. 29 Sep, 2006 9 commits
  3. 28 Sep, 2006 23 commits
  4. 27 Sep, 2006 3 commits
    • unknown's avatar
      Bug #20778: strange characters in warning message 1366 when called in SP · 033db2d0
      unknown authored
      The function receives an exactly-sized buffer (not a C NUL-terminated string)
      and passes it into a printf function to be interpreted with "%s".
      
      Instead, create an intermediate String object, and copy the data into it, 
      and pass in a pointer to the String's NUL-terminated buffer.
      
      
      mysql-test/r/warnings.result:
        Test that warnings do not read outside its intended memory space.
      mysql-test/t/warnings.test:
        Test that warnings do not read outside its intended memory space.
      sql/field.cc:
        Create a new String object and use a pointer to its data instead of the 
        exactly-sized buffer to be interpreted as a C string deep within the 
        errmsg.txt list via printf.
      033db2d0
    • unknown's avatar
      Merge mysql.com:/Users/emurphy/src/mysql/clean/mysql-5.0-maint · 8e72d7db
      unknown authored
      into  mysql.com:/Users/emurphy/src/mysql/clean/mysql-5.0-maint-gca
      
      
      8e72d7db
    • unknown's avatar
      Temporary fix for bug#22268 (official patch will come soon) · 6930d9d2
      unknown authored
      Don't cap threads at 1000 on Windows any more.
      
      
      6930d9d2