summary refs log tree commit diff
path: root/pkgs/games/urbanterror/l_script.patch
blob: 8aa176cca8cb9288c18c1c433837d5a18646476d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff -ur code/botlib/l_script.c kode/botlib/l_script.c
--- code/botlib/l_script.c	2007-10-09 02:47:26.000000000 +0400
+++ kode/botlib/l_script.c	2012-04-16 02:02:55.170360236 +0400
@@ -1118,7 +1118,7 @@
 {
 	if (*string == '\"')
 	{
-		strcpy(string, string+1);
+		memmove(string, string+1, strlen(string) - 1);
 	} //end if
 	if (string[strlen(string)-1] == '\"')
 	{
@@ -1135,7 +1135,7 @@
 {
 	if (*string == '\'')
 	{
-		strcpy(string, string+1);
+		memmove(string, string+1, strlen(string) - 1);
 	} //end if
 	if (string[strlen(string)-1] == '\'')
 	{