1. 07 Jun, 2005 1 commit
  2. 01 Jun, 2005 1 commit
  3. 30 May, 2005 2 commits
  4. 26 May, 2005 3 commits
  5. 25 May, 2005 6 commits
  6. 24 May, 2005 14 commits
  7. 23 May, 2005 10 commits
  8. 21 May, 2005 1 commit
    • reggie@mdk10.(none)'s avatar
      BUG# 9148: Denial of service · 78b40d0a
      reggie@mdk10.(none) authored
      This is a second patch needing another review.  The first patch didn't solve
      the entire problem.  open and fopen on Windows will still open
      files like "com1.sym" when they shouldn't.  This patch
      checks that the file exists before trying to open it.
      78b40d0a
  9. 20 May, 2005 2 commits
    • reggie@mdk10.(none)'s avatar
      2536b593
    • reggie@mdk10.(none)'s avatar
      BUG# 9148: Denial of service · 48c58453
      reggie@mdk10.(none) authored
      The problem was that on Windows the access method indicates that access to file 
      such as "com1" and "lpt1" is allowed (since they are device names) and
      this causes mysql to attempt to open them as databases or tables.
      
      The fix was to write our own my_access method that uses other Win32 functions
      to determine if the given argument is indeed a file and has to requested
      mode.
      48c58453