1. 27 Aug, 2009 1 commit
  2. 25 Aug, 2009 1 commit
  3. 18 Aug, 2009 3 commits
  4. 17 Aug, 2009 1 commit
  5. 13 Aug, 2009 1 commit
  6. 11 Aug, 2009 3 commits
  7. 06 Aug, 2009 1 commit
  8. 05 Aug, 2009 1 commit
  9. 31 Jul, 2009 1 commit
  10. 23 Jul, 2009 1 commit
  11. 17 Jul, 2009 1 commit
  12. 16 Jul, 2009 1 commit
  13. 15 Jul, 2009 1 commit
  14. 22 Jun, 2009 2 commits
  15. 16 Jun, 2009 1 commit
  16. 03 Jun, 2009 1 commit
  17. 02 Jun, 2009 1 commit
  18. 29 May, 2009 2 commits
  19. 28 May, 2009 3 commits
  20. 27 May, 2009 7 commits
  21. 26 May, 2009 2 commits
  22. 25 May, 2009 4 commits
    • Bjorn Munch's avatar
      merge from 5.1-mtr · 8d08c6d0
      Bjorn Munch authored
      8d08c6d0
    • Staale Smedseng's avatar
      Bug #44736 mysqld_safe's my_which() is broken and · b9962a7d
      Staale Smedseng authored
      doesn't find 'logger'
      
      Due to a variable quoting mistake, the $PATH environment
      variable isn't parsed correctly when searching for the
      existence of the desired executable(s) (logger in this 
      case).
      
      This patch removes the quotes.
      b9962a7d
    • Bjorn Munch's avatar
      Bug #44922 mysqltest's query_get_value function can't work with queries containing ',' · d7943e92
      Bjorn Munch authored
      check_command_args() always looks for the first , (or whatever)
      Extended check_command_args() to let arguments be quoted
      Added test in mysqltest.test
      d7943e92
    • Davi Arnaut's avatar
      Bug#42158: leak: SSL_get_peer_certificate() doesn't have matching X509_free() · 1e658cb0
      Davi Arnaut authored
      The problem is that the server failed to follow the rule that
      every X509 object retrieved using SSL_get_peer_certificate()
      must be explicitly freed by X509_free(). This caused a memory
      leak for builds linked against OpenSSL where the X509 object
      is reference counted -- improper counting will prevent the
      object from being destroyed once the session containing the
      peer certificate is freed.
      
      The solution is to explicitly free every X509 object used.
      
      mysql-test/r/openssl_1.result:
        Add test case result for Bug#42158
      mysql-test/t/openssl_1.test:
        Add test case for Bug#42158
      sql/sql_acl.cc:
        Deallocate X509 objects.
      1e658cb0