diff options
author | hf@deer.(none) <> | 2003-12-12 18:27:25 +0400 |
---|---|---|
committer | hf@deer.(none) <> | 2003-12-12 18:27:25 +0400 |
commit | 1485d9b438757cf9ad5e6a822e6501568e4dcb44 (patch) | |
tree | 77c6779df41357e05c62fceedeb9ded4fc524ea3 /libmysqld | |
parent | 5aaa6e61a60fe6398bc9e50bfce1b4bf1902a2bc (diff) | |
download | mariadb-git-1485d9b438757cf9ad5e6a822e6501568e4dcb44.tar.gz |
Edited fix for #1224.
strcpy changed to strmake
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/lib_sql.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc index 03e3c1fee30..91a308ecb21 100644 --- a/libmysqld/lib_sql.cc +++ b/libmysqld/lib_sql.cc @@ -224,7 +224,7 @@ static bool check_user(THD *thd,enum_server_command command, const char *user, send_error(net,ER_OUT_OF_RESOURCES); return 1; } - strcpy(thd->priv_host, LOCAL_HOST); + strmake(thd->priv_host, LOCAL_HOST, sizeof(thd->priv_host)-1); thd->master_access=acl_getroot(thd, thd->host, thd->ip, thd->user, passwd, thd->scramble, &thd->priv_user, thd->priv_host, |