mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 12:33:50 +01:00
Fix size_t temporary underflow in log_loaded_themes
`len` will underflow but will overflow right after, so it's not as bad as it may appear. Still better not to under/overflow at all. Fixes https://github.com/swaywm/sway/issues/3862
This commit is contained in:
parent
783b3d6b37
commit
bcde298a71
@ -307,16 +307,16 @@ static void log_loaded_themes(list_t *themes) {
|
||||
return;
|
||||
}
|
||||
|
||||
const char *sep = ", ";
|
||||
const char sep[] = ", ";
|
||||
size_t sep_len = strlen(sep);
|
||||
|
||||
size_t len = 1 - sep_len;
|
||||
size_t len = 0;
|
||||
for (int i = 0; i < themes->length; ++i) {
|
||||
struct icon_theme *theme = themes->items[i];
|
||||
len += strlen(theme->name) + sep_len;
|
||||
}
|
||||
|
||||
char *str = malloc(len);
|
||||
char *str = malloc(len + 1);
|
||||
if (!str) {
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user