summaryrefslogtreecommitdiff
blob: 759d068b5baeec9fea12e737865dea59bddd641c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
diff -ru concentration-1.2.orig/src/ShiftyEngine.c concentration-1.2/src/ShiftyEngine.c
--- concentration-1.2.orig/src/ShiftyEngine.c	2004-09-20 21:08:59.000000000 -0400
+++ concentration-1.2/src/ShiftyEngine.c	2010-05-18 13:39:22.717713130 -0400
@@ -61,13 +61,13 @@
 	int len = strlen(name);
 	assert(name);
 
-	gameName = (char *)malloc((sizeof(char) * len) + 1);
+	gameName = malloc(len + 1);
 	if(!gameName) {
 		fprintf(stderr, "Out Of Memory.");
 		exit(1);
 	}
 
-	strncpy(gameName, name, len);
+	snprintf(gameName, len + 1, "%s", name);
 }
 
 /*****************************************************
@@ -87,13 +87,13 @@
 	int len = strlen(name);
 	assert(name);
 
-	backgroundName = (char *)malloc((sizeof(char) * len) + 1);
+	backgroundName = malloc(len + 1);
 	if(!backgroundName) {
 		fprintf(stderr, "Out Of Memory.");
 		exit(1);
 	}
 
-	strncpy(backgroundName, name, len);
+	snprintf(backgroundName, len + 1, "%s", name);
 }
 
 /*****************************************************
@@ -175,7 +175,7 @@
 		exit(1);
 	}
 
-	strncpy(t->name, name, 16);
+	snprintf(t->name, 16, "%s", name);
 	t->x = x;
 	t->y = y;
 	t->w = w;
diff -ru concentration-1.2.orig/src/concentration.c concentration-1.2/src/concentration.c
--- concentration-1.2.orig/src/concentration.c	2005-11-09 11:05:02.000000000 -0500
+++ concentration-1.2/src/concentration.c	2010-05-18 13:42:19.688474410 -0400
@@ -202,7 +202,7 @@
 
 /*****************************************************
  ****************************************************/
-inline void drawText(char * str, SDL_Color color, int x, int y, TTF_Font * font)
+void drawText(char * str, SDL_Color color, int x, int y, TTF_Font * font)
 {
 	static SDL_Rect dest;
 	
@@ -814,7 +814,7 @@
 				SE_Error("A blit failed.");
 			SDL_FreeSurface(text);
 			
-			sprintf(str, "%d seconds", myclock);
+			snprintf(str, sizeof(str), "%d seconds", myclock);
 			text   = TTF_RenderText_Blended(smallFont, str, black);
 			if(!text)
 				SE_Error("A render failed.");
@@ -831,7 +831,7 @@
 				SE_Error("A blit failed.");
 			SDL_FreeSurface(text);
 			
-			sprintf(str, "%d trys", hits + misses);
+			snprintf(str, sizeof(str), "%d trys", hits + misses);
 			text   = TTF_RenderText_Blended(smallFont, str, black);
 			if(!text)
 				SE_Error("A render failed.");
@@ -840,7 +840,7 @@
 				SE_Error("A blit failed.");
 			SDL_FreeSurface(text);
 			
-			sprintf(str, "Total pairs: %d", (size == 2) ? 2 : (size == 4) ? 8 : 36);
+			snprintf(str, sizeof(str), "Total pairs: %d", (size == 2) ? 2 : (size == 4) ? 8 : 36);
 			text   = TTF_RenderText_Blended(smallFont, str, black);
 			if(!text)
 				SE_Error("A render failed.");
@@ -1327,7 +1327,7 @@
 {
 	int x, makeFullScreen = 0;
 
-	char name[16];
+	char name[64];
 	
 	SE_SetName("Concentration 1.2");
 	SE_SetBackground("pics/background.png");
@@ -1395,13 +1395,13 @@
 
 	/* load icon set 1 */
 	for(x = 1; x <= 30; x++) {
-		sprintf(name, "pics/set1/%d.png", x);
+		snprintf(name, sizeof(name), "pics/set1/%d.png", x);
 		icons[x] = loadPNG(name);
 
-		sprintf(name, "pics/set2/%d.png", x);
+		snprintf(name, sizeof(name), "pics/set2/%d.png", x);
 		icons2[x] = loadPNG(name);
 
-		sprintf(name, "pics/set3/%d.png", x);
+		snprintf(name, sizeof(name), "pics/set3/%d.png", x);
 		icons3[x] = loadPNG(name);
 	}
 
diff -ru concentration-1.2.orig/src/gfx.c concentration-1.2/src/gfx.c
--- concentration-1.2.orig/src/gfx.c	2004-09-20 21:08:59.000000000 -0400
+++ concentration-1.2/src/gfx.c	2010-05-18 13:39:22.718722669 -0400
@@ -39,8 +39,7 @@
 		exit(1);
 	}
 
-	strcpy(newname, sg_data_path);
-	strcat(newname, name);
+	snprintf(newname, len1 + len2 + 1, "%s%s", sg_data_path, name);
 
 	temp = IMG_Load(newname);
 	if (temp == NULL) {
@@ -67,8 +66,7 @@
 		exit(1);
 	}
 
-	strcpy(newname, sg_data_path);
-	strcat(newname, name);
+	snprintf(newname, len1 + len2 + 1, "%s%s", sg_data_path, name);
 
 	temp = IMG_Load(newname);
 	if (temp == NULL) {
@@ -99,8 +97,7 @@
 		exit(1);
 	}
 
-	strcpy(newname, sg_data_path);
-	strcat(newname, name);
+	snprintf(newname, len1 + len2 + 1, "%s%s", sg_data_path, name);
 
 	temp = TTF_OpenFont(newname, size);
 	if (temp == NULL) {
diff -ru concentration-1.2.orig/src/sound.c concentration-1.2/src/sound.c
--- concentration-1.2.orig/src/sound.c	2004-09-20 21:08:59.000000000 -0400
+++ concentration-1.2/src/sound.c	2010-05-18 13:39:22.718722669 -0400
@@ -57,8 +57,7 @@
 		fprintf(stderr, "Out of memory!\n");
 		exit(1);
 	}
-	strcpy(newname, sg_data_path);
-	strcat(newname, name);
+	snprintf(newname, len1 + len2 + 1, "%s%s", sg_data_path, name);
 
 	temp = Mix_LoadWAV(newname);
 	if(!temp)