Increased size of buffer used to split account names
This commit is contained in:
parent
a048afc8a3
commit
48f024a42a
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ account_t * account_t::find_account(const string& name,
|
|||
if (i != accounts.end())
|
||||
return (*i).second;
|
||||
|
||||
char buf[256];
|
||||
char buf[8192];
|
||||
|
||||
string::size_type sep = name.find(':');
|
||||
assert(sep < 256|| sep == string::npos);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue