2
2
3
3
#include <limits.h>
4
4
#include <stdio.h>
5
+ #include <stdlib.h>
5
6
6
7
#include "./sdl/main.h"
7
8
@@ -42,6 +43,8 @@ int main() {
42
43
43
44
drawPattern (& game , requestedPattern );
44
45
46
+ free (requestedPattern );
47
+
45
48
/* ----------------------- Request Maximum Generation ----------------------- */
46
49
47
50
maxGeneration = getUserInputStr (
@@ -57,6 +60,8 @@ int main() {
57
60
58
61
printf ("> Maximum generation received: %s.\n\n" , maxGeneration );
59
62
63
+ free (maxGeneration );
64
+
60
65
/* ------------------------------ Request Delay ----------------------------- */
61
66
62
67
sprintf (delayBetweenGenerationsMsg ,
@@ -71,6 +76,8 @@ int main() {
71
76
72
77
printf ("> Delay received: %s milliseconds.\n\n" , delayBetweenGenerations );
73
78
79
+ free (delayBetweenGenerations );
80
+
74
81
/* ---------------------------- Request Platform ---------------------------- */
75
82
76
83
platformSelected = getUserInputStr (
@@ -81,10 +88,12 @@ int main() {
81
88
printf ("> Platform selected: '%s'.\n" , platformSelected );
82
89
83
90
if (strcmpi (platformSelected , "console" ) == 0 ) {
91
+ free (platformSelected );
84
92
startGameByConsole (& game , maxGenerationInt , delayBetweenGenerationsInt );
85
93
return 0 ;
86
94
}
87
95
96
+ free (platformSelected );
88
97
startGameBySDL (& game , maxGenerationInt , delayBetweenGenerationsInt );
89
98
90
99
return 0 ;
0 commit comments