mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-17 18:12:18 +01:00
Fix potential memory leak
This commit is contained in:
parent
22675b0111
commit
f85d0740a8
1 changed files with 8 additions and 4 deletions
|
@ -17,18 +17,22 @@ char *read_line(FILE *file) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (length == size) {
|
if (length == size) {
|
||||||
string = realloc(string, size *= 2);
|
char *new_string = realloc(string, size *= 2);
|
||||||
if (!string) {
|
if (!new_string) {
|
||||||
|
free(string);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
string = new_string;
|
||||||
}
|
}
|
||||||
string[length++] = c;
|
string[length++] = c;
|
||||||
}
|
}
|
||||||
if (length + 1 == size) {
|
if (length + 1 == size) {
|
||||||
string = realloc(string, length + 1);
|
char *new_string = realloc(string, length + 1);
|
||||||
if (!string) {
|
if (!new_string) {
|
||||||
|
free(string);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
string = new_string;
|
||||||
}
|
}
|
||||||
string[length] = '\0';
|
string[length] = '\0';
|
||||||
return string;
|
return string;
|
||||||
|
|
Loading…
Reference in a new issue