mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
use better number parsing
This commit is contained in:
parent
da9adec47f
commit
200020da93
@ -484,8 +484,10 @@ static void sig_server_quit(IRC_SERVER_REC *server, const char *msg)
|
||||
|
||||
static void cap_maxline(IRC_SERVER_REC *server)
|
||||
{
|
||||
int maxline = atoi(g_hash_table_lookup(server->cap_supported, CAP_MAXLINE));
|
||||
if (maxline >= MAX_IRC_MESSAGE_LEN + 2 /* 2 bytes for CR+LF */) {
|
||||
unsigned int maxline = 0;
|
||||
if (parse_uint(g_hash_table_lookup(server->cap_supported, CAP_MAXLINE),
|
||||
NULL, 10, &maxline) &&
|
||||
maxline >= MAX_IRC_MESSAGE_LEN + 2 /* 2 bytes for CR+LF */) {
|
||||
server->max_message_len = maxline - 2;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user