From d1d87d2ac643e3dabc251f3cec7d3b00e29b282c Mon Sep 17 00:00:00 2001 From: root Date: Tue, 6 Dec 2011 23:14:44 +0000 Subject: Tue Dec 6 23:14:44 UTC 2011 --- community/openarena/strcpy-memmove.patch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 community/openarena/strcpy-memmove.patch (limited to 'community/openarena/strcpy-memmove.patch') diff --git a/community/openarena/strcpy-memmove.patch b/community/openarena/strcpy-memmove.patch new file mode 100644 index 000000000..0123af61a --- /dev/null +++ b/community/openarena/strcpy-memmove.patch @@ -0,0 +1,20 @@ +--- code/botlib/l_script.c.orig 2009-11-02 20:29:23.000000000 +0100 ++++ code/botlib/l_script.c 2009-11-02 22:21:40.000000000 +0100 +@@ -1118,7 +1118,7 @@ + { + if (*string == '\"') + { +- strcpy(string, string+1); ++ memmove(string, string+1, strlen(string)); + } //end if + if (string[strlen(string)-1] == '\"') + { +@@ -1135,7 +1135,7 @@ + { + if (*string == '\'') + { +- strcpy(string, string+1); ++ memmove(string, string+1, strlen(string)); + } //end if + if (string[strlen(string)-1] == '\'') + { -- cgit v1.2.3-54-g00ecf