1. 13 Nov, 2006 4 commits
  2. 10 Nov, 2006 1 commit
  3. 09 Nov, 2006 3 commits
  4. 08 Nov, 2006 6 commits
  5. 07 Nov, 2006 7 commits
  6. 06 Nov, 2006 2 commits
  7. 03 Nov, 2006 1 commit
  8. 02 Nov, 2006 8 commits
  9. 01 Nov, 2006 4 commits
  10. 31 Oct, 2006 4 commits
    • unknown's avatar
      Improve the reading of .pid files from var/run · aa8c830d
      unknown authored
       - Only read *.pid
       - Only allow it to contain a number 
      
      
      mysql-test/lib/mtr_io.pl:
        Check that the value read from pidfile is a valid number consisting only of digits
      mysql-test/lib/mtr_process.pl:
        Only process .pid files in var/run dir and print a warning if other files are found there.
      aa8c830d
    • unknown's avatar
      Make variables static to please Netware compiler · 8e0113be
      unknown authored
      
      client/mysqltest.c:
        Make the variables that are referenced from the "command_arg" arrays static to please the NetWare compiler.
        Apparently the arrays can't reference local stack variables.
      8e0113be
    • unknown's avatar
    • unknown's avatar
      Bug#22828 _my_b_read() ignores return values for my_seek() calls · 23061beb
      unknown authored
      - Because my_seek actually is capable of returning an error code we should
        exploit that in the best possible way.
      - There might be kernel errors or other errors we can't predict and capturing
        the return value of all system calls gives us better understanding of
        possible errors.
      
      
      mysys/mf_iocache.c:
        - Added check on return value for my_seek
        - Added comments
      mysys/my_chsize.c:
        - Added check on return value for my_seek
        - Added comments
      mysys/my_lock.c:
        - Added check on return value for my_seek
        - Added comments
      mysys/my_seek.c:
        - Added comments
      23061beb