mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 12:33:50 +01:00
Repair swaynag crash reading message from stdin
When swaynag is run with the -l/--detailed-message option, a crash may occur if the detailed message read from stdin is large enough. E.g.: swaynag -m hello -l < ~/.config/sway/config The root cause is that the read_from_stdin() function under-allocates memory for the destination buffer which causes that buffer to be overflowed when copying line data to it with snprintf(). The repair is to allocate one more byte for the terminating null byte. N.B. although getline() returns the number of bytes read excluding a terminating null byte, the line buffer is terminated with a null byte. Thus we have a guarantee that the line buffer will be null terminated (which is important when copying with snprintf()).
This commit is contained in:
parent
055d662baa
commit
79369681ab
@ -18,7 +18,7 @@ static char *read_from_stdin(void) {
|
|||||||
size_t line_size = 0;
|
size_t line_size = 0;
|
||||||
ssize_t nread;
|
ssize_t nread;
|
||||||
while ((nread = getline(&line, &line_size, stdin)) != -1) {
|
while ((nread = getline(&line, &line_size, stdin)) != -1) {
|
||||||
buffer = realloc(buffer, buffer_len + nread);
|
buffer = realloc(buffer, buffer_len + nread + 1);
|
||||||
snprintf(&buffer[buffer_len], nread + 1, "%s", line);
|
snprintf(&buffer[buffer_len], nread + 1, "%s", line);
|
||||||
buffer_len += nread;
|
buffer_len += nread;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user