mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
fixed doubling memory bug for config lines longer then 128
This commit is contained in:
parent
780893a933
commit
eff55d0de1
@ -3,7 +3,7 @@
|
||||
#include <stdio.h>
|
||||
|
||||
char *read_line(FILE *file) {
|
||||
int i = 0, length = 0, size = 128;
|
||||
int length = 0, size = 128;
|
||||
char *string = malloc(size);
|
||||
if (!string) {
|
||||
return NULL;
|
||||
@ -16,21 +16,20 @@ char *read_line(FILE *file) {
|
||||
if (c == '\r') {
|
||||
continue;
|
||||
}
|
||||
if (i == size) {
|
||||
string = realloc(string, length *= 2);
|
||||
if (length == size) {
|
||||
string = realloc(string, size *= 2);
|
||||
if (!string) {
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
string[i++] = (char)c;
|
||||
length++;
|
||||
string[length++] = c;
|
||||
}
|
||||
if (i + 1 != size) {
|
||||
if (length + 1 == size) {
|
||||
string = realloc(string, length + 1);
|
||||
if (!string) {
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
string[i] = '\0';
|
||||
string[length] = '\0';
|
||||
return string;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user