git » fp-git.git » commit 55dd425

another memory leak fixed

author ecalot
2004-07-23 19:51:42 UTC
committer ecalot
2004-07-23 19:51:42 UTC
parent 01c4e77d40a65a9dd91e30bb9483e615f6bec96a

another memory leak fixed

FP/src/res/resources.c +2 -0

diff --git a/FP/src/res/resources.c b/FP/src/res/resources.c
index a0639e8..66b86c5 100644
--- a/FP/src/res/resources.c
+++ b/FP/src/res/resources.c
@@ -258,6 +258,8 @@ void resFree(tData* res) {
 			outputFreeBitmap(res->pFrames[--(res->frames)]);
 		}
 	}
+	printf("ResFree activated\n");
+	free(res->pFrames);
 	free(res);
 }