diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-04-30 23:06:09 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-05-01 00:30:17 +0200 |
commit | fab383aac0a713b48765d0464428199470ae8c0a (patch) | |
tree | a7eb29a44716bd0a333d48a60502660addc23c20 /mysql-test/r/connect_debug.result | |
parent | a52c46e06935b09ff9219ae7684b5a29394e992b (diff) | |
download | mariadb-git-fab383aac0a713b48765d0464428199470ae8c0a.tar.gz |
Use after free in authentication
Diffstat (limited to 'mysql-test/r/connect_debug.result')
-rw-r--r-- | mysql-test/r/connect_debug.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/connect_debug.result b/mysql-test/r/connect_debug.result new file mode 100644 index 00000000000..0452b238db9 --- /dev/null +++ b/mysql-test/r/connect_debug.result @@ -0,0 +1,5 @@ +set @old_dbug=@@global.debug_dbug; +set global debug_dbug='+d,auth_disconnect'; +create user 'bad' identified by 'worse'; +set global debug_dbug=@old_dbug; +drop user bad; |