diff options
author | sasha@mysql.sashanet.com <> | 2000-10-21 12:17:08 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-10-21 12:17:08 -0600 |
commit | 77a1d12a245e5b63c75ae33fa30e6e6da61252f8 (patch) | |
tree | fd297fbfc74df1a188e381405342966bb2ee0383 /sql/slave.cc | |
parent | 2fd65762b6f47a05a0595a585efd940a8c3ed9de (diff) | |
download | mariadb-git-77a1d12a245e5b63c75ae33fa30e6e6da61252f8.tar.gz |
sql/slave.cc
buffer size fix + template instatiation
Diffstat (limited to 'sql/slave.cc')
-rw-r--r-- | sql/slave.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/slave.cc b/sql/slave.cc index a267421a3bd..bfbe12df22e 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -284,7 +284,7 @@ int init_master_info(MASTER_INFO* mi) { FILE* file; MY_STAT stat_area; - char fname[FN_REFLEN]; + char fname[FN_REFLEN+128]; fn_format(fname, master_info_file, mysql_data_home, "", 4+16+32); if(!mi->inited) @@ -986,5 +986,6 @@ static void safe_reconnect(THD* thd, MYSQL* mysql, MASTER_INFO* mi) #ifdef __GNUC__ template class I_List_iterator<i_string>; +template class I_List_iterator<i_string_pair>; #endif |