Skip to content

Commit 3305584

Browse files
hozlucas28tefhuergoFerny1011GuidolinaresTiagoGiannotti
committed
feature: add free function
Co-authored-by: EstefaniaHuergo <[email protected]> Co-authored-by: Ferney Santiago Quiroga <[email protected]> Co-authored-by: Guidolinares <[email protected]> Co-authored-by: Tiago Giannotti <[email protected]>
1 parent 77a4b6a commit 3305584

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main.c

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#include <limits.h>
44
#include <stdio.h>
5+
#include <stdlib.h>
56

67
#include "./sdl/main.h"
78

@@ -42,6 +43,8 @@ int main() {
4243

4344
drawPattern(&game, requestedPattern);
4445

46+
free(requestedPattern);
47+
4548
/* ----------------------- Request Maximum Generation ----------------------- */
4649

4750
maxGeneration = getUserInputStr(
@@ -57,6 +60,8 @@ int main() {
5760

5861
printf("> Maximum generation received: %s.\n\n", maxGeneration);
5962

63+
free(maxGeneration);
64+
6065
/* ------------------------------ Request Delay ----------------------------- */
6166

6267
sprintf(delayBetweenGenerationsMsg,
@@ -71,6 +76,8 @@ int main() {
7176

7277
printf("> Delay received: %s milliseconds.\n\n", delayBetweenGenerations);
7378

79+
free(delayBetweenGenerations);
80+
7481
/* ---------------------------- Request Platform ---------------------------- */
7582

7683
platformSelected = getUserInputStr(
@@ -81,10 +88,12 @@ int main() {
8188
printf("> Platform selected: '%s'.\n", platformSelected);
8289

8390
if (strcmpi(platformSelected, "console") == 0) {
91+
free(platformSelected);
8492
startGameByConsole(&game, maxGenerationInt, delayBetweenGenerationsInt);
8593
return 0;
8694
}
8795

96+
free(platformSelected);
8897
startGameBySDL(&game, maxGenerationInt, delayBetweenGenerationsInt);
8998

9099
return 0;

0 commit comments

Comments
 (0)