summary refs log tree commit diff
path: root/pkgs/games/crafty/strcpy.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/crafty/strcpy.patch')
-rw-r--r--pkgs/games/crafty/strcpy.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/games/crafty/strcpy.patch b/pkgs/games/crafty/strcpy.patch
deleted file mode 100644
index d4d424d23dab..000000000000
--- a/pkgs/games/crafty/strcpy.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- a/utility.c
-+++ b/utility.c
-@@ -2144,7 +2144,7 @@ int ReadPGN(FILE * input, int option) {
-         char *skip;
- 
-         strcpy(temp, input_buffer);
--        skip = strstr(input_buffer, buffer) + strlen(buffer);
-+        skip = strstr(temp, buffer) + strlen(buffer);
-         if (skip)
-           strcpy(input_buffer, skip);
-       }
-@@ -2241,7 +2241,7 @@ int ReadPGN(FILE * input, int option) {
-             }
-           }
-           strcpy(temp, input_buffer);
--          skip = strstr(input_buffer, buffer) + strlen(buffer);
-+          skip = strstr(temp, buffer) + strlen(buffer);
-           strcpy(input_buffer, skip);
-       } else {
-         int skip;
-