1. 23 Jul, 2006 3 commits
  2. 20 Jul, 2006 3 commits
  3. 19 Jul, 2006 1 commit
  4. 18 Jul, 2006 4 commits
  5. 17 Jul, 2006 3 commits
  6. 15 Jul, 2006 1 commit
  7. 14 Jul, 2006 3 commits
  8. 13 Jul, 2006 12 commits
  9. 12 Jul, 2006 8 commits
  10. 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