Fix potential memory leak

master
Alexander 'z33ky' Hirsch 9 years ago
parent 22675b0111
commit f85d0740a8

@ -17,18 +17,22 @@ char *read_line(FILE *file) {
continue;
}
if (length == size) {
string = realloc(string, size *= 2);
if (!string) {
char *new_string = realloc(string, size *= 2);
if (!new_string) {
free(string);
return NULL;
}
string = new_string;
}
string[length++] = c;
}
if (length + 1 == size) {
string = realloc(string, length + 1);
if (!string) {
char *new_string = realloc(string, length + 1);
if (!new_string) {
free(string);
return NULL;
}
string = new_string;
}
string[length] = '\0';
return string;

Loading…
Cancel
Save