summaryrefslogtreecommitdiff
path: root/games/kdegames2/patches/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'games/kdegames2/patches/patch-aa')
-rw-r--r--games/kdegames2/patches/patch-aa21
1 files changed, 0 insertions, 21 deletions
diff --git a/games/kdegames2/patches/patch-aa b/games/kdegames2/patches/patch-aa
deleted file mode 100644
index 7b6dcf254e8..00000000000
--- a/games/kdegames2/patches/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2002/06/30 21:31:26 jdolecek Exp $
-
---- kmahjongg/HighScore.cpp.orig Sun Jun 30 23:21:56 2002
-+++ kmahjongg/HighScore.cpp Sun Jun 30 23:22:09 2002
-@@ -183,12 +183,14 @@
-
- HighScore::~HighScore()
- {
-- TableInstance *t;
-+ TableInstance *t, *tn;
-
- if (tables != NULL) {
-- for (t = tables; t != NULL; t=t->next)
-+ for (t = tables; t != NULL; t = tn) {
-+ tn = t->next;
- if (t != NULL)
- delete t;
-+ }
- }
- tables = NULL;
- }