Skip to content

Commit 86e849d

Browse files
committed
fix
1 parent fa2875b commit 86e849d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

client/mysql.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,7 @@ int main(int argc,char *argv[])
14271427
else if ((home= getenv("HOME")))
14281428
{
14291429
size_t histfile_size=
1430-
strlen(getenv(home)) + strlen("/.mysql_history") + 2;
1430+
strlen(home) + strlen("/.mysql_history") + 2;
14311431
histfile=(char*) my_malloc(PSI_NOT_INSTRUMENTED,
14321432
histfile_size, MYF(MY_WME));
14331433
if (histfile)

debian/mariadb-test-data.install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
usr/lib/mariadb/plugin/test_pam_modules
1+
usr/lib/mysql/plugin/test_pam_modules
22
usr/share/mariadb/mariadb-test/collections
33
usr/share/mariadb/mariadb-test/include
44
usr/share/mariadb/mariadb-test/main

mysql-test/suite/s3/debug.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ select count(*) from t1;
2424
count(*)
2525
100
2626
set @@global.s3_debug=0;
27-
FOUND 8 /s3_test_/ in mysqld.1.err
27+
FOUND 10 /s3_test_/ in mysqld.1.err
2828
select count(*) from t1;
2929
count(*)
3030
100
3131
drop table t1;
32-
FOUND 8 /s3_test_/ in mysqld.1.err
32+
FOUND 10 /s3_test_/ in mysqld.1.err

0 commit comments

Comments
 (0)