summaryrefslogtreecommitdiff
path: root/community/dosemu/fix-infinite-loop.patch
blob: 7f12d9985df2cd77ee3bc9bc5e93ec54f95eb3b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- trunk/src/plugin/translate/translate.c	2011/05/24 02:28:24	2032
+++ trunk/src/plugin/translate/translate.c	2011/10/03 23:37:46	2058
@@ -466,7 +466,9 @@
 			while (list->next) {
 				list = list->next;
 			}
-			list->next = set;
+			if (list != set) {
+				list->next = set;
+			}
 		}
 		initialize_charset(set);
 	}