about summary refs log tree commit diff
path: root/pkgs/games/crafty/strcpy.patch
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2014-05-27 12:57:50 -0500
committerJohn Wiegley <johnw@newartisans.com>2014-05-27 12:57:50 -0500
commit93936fdf8af22e243b367ce616e1efd8ccc76d3a (patch)
tree6ef84f70dab7d738a6608f00f9619556f6792d4b /pkgs/games/crafty/strcpy.patch
parent4fa451887550588674025822c7d94787fad8da20 (diff)
downloadnixlib-93936fdf8af22e243b367ce616e1efd8ccc76d3a.tar
nixlib-93936fdf8af22e243b367ce616e1efd8ccc76d3a.tar.gz
nixlib-93936fdf8af22e243b367ce616e1efd8ccc76d3a.tar.bz2
nixlib-93936fdf8af22e243b367ce616e1efd8ccc76d3a.tar.lz
nixlib-93936fdf8af22e243b367ce616e1efd8ccc76d3a.tar.xz
nixlib-93936fdf8af22e243b367ce616e1efd8ccc76d3a.tar.zst
nixlib-93936fdf8af22e243b367ce616e1efd8ccc76d3a.zip
Add expression for building crafty and craftyFull
Diffstat (limited to 'pkgs/games/crafty/strcpy.patch')
-rw-r--r--pkgs/games/crafty/strcpy.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/games/crafty/strcpy.patch b/pkgs/games/crafty/strcpy.patch
new file mode 100644
index 000000000000..d4d424d23dab
--- /dev/null
+++ b/pkgs/games/crafty/strcpy.patch
@@ -0,0 +1,21 @@
+--- 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;
+