free up the line pointer after we are finished

This commit is contained in:
Chris Cromer 2021-06-19 20:30:08 -04:00
parent e717917e95
commit b5e4de3f82
1 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@ void loop() {
if (feof(stdin)) {
// the stdin was closed, this usually happens for CTRL-D
printf("\n");
free(line);
break;
}
else {
@ -52,6 +53,7 @@ void loop() {
remove_new_line(line);
if (strcmp(line, "quit") == 0) {
free(line);
break;
}
}