1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

inp_readline() Correct slashguard feature

Protect against invalid reads by checking the length.
This commit is contained in:
Michael Vetter 2020-04-21 16:47:18 +02:00
parent f27bd92731
commit 813fd637a1

View File

@ -197,10 +197,12 @@ inp_readline(void)
if (inp_line) {
if (!get_password && prefs_get_boolean(PREF_SLASH_GUARD)) {
char *res = (char*) memchr (inp_line+1, '/', 3);
if (res) {
cons_show("Your text contains a slash in the first 4 characters");
return NULL;
if (strlen(inp_line) > 1) {
char *res = (char*) memchr (inp_line+1, '/', 3);
if (res) {
cons_show("Your text contains a slash in the first 4 characters");
return NULL;
}
}
}
return strdup(inp_line);