1. 20 Jul, 2006 2 commits
  2. 19 Jul, 2006 1 commit
  3. 18 Jul, 2006 8 commits
  4. 17 Jul, 2006 3 commits
  5. 15 Jul, 2006 1 commit
  6. 14 Jul, 2006 3 commits
  7. 13 Jul, 2006 13 commits
  8. 12 Jul, 2006 7 commits
  9. 11 Jul, 2006 2 commits
    • cmiller@zippy.(none)'s avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · f12bc24a
      cmiller@zippy.(none) authored
      into  zippy.(none):/home/cmiller/work/mysql/m41-maint--07AB5
      f12bc24a
    • cmiller@zippy.(none)'s avatar
      Bug#20729: Bad date_format() call makes mysql server crash · 22485908
      cmiller@zippy.(none) authored
          
      The problem is that the author used the wrong function to send a warning to the 
      user about truncation of data.  push_warning() takes a constant string and 
      push_warning_printf() takes a format and variable arguments to fill it.
      
      Since the string we were complaining about contains percent characters, the 
      printf() code interprets the "%Y" et c. that the user sends.  That's wrong, and
      often causes a crash, especially if the date mentions seconds, "%s".
      
      A alternate fix would be to use  push_warning_printf(..., "%s", warn_buff) .
      22485908