summaryrefslogtreecommitdiff
path: root/devel/smv/files/patch-string.c
diff options
context:
space:
mode:
Diffstat (limited to 'devel/smv/files/patch-string.c')
-rw-r--r--devel/smv/files/patch-string.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/devel/smv/files/patch-string.c b/devel/smv/files/patch-string.c
new file mode 100644
index 000000000000..3c5e8e9b54dd
--- /dev/null
+++ b/devel/smv/files/patch-string.c
@@ -0,0 +1,10 @@
+--- string.c
++++ string.c
+@@ -35,7 +35,7 @@
+ string_rec a,*res;
+ a.text = x;
+ if(res = (string_ptr)find_hash(string_hash,&a))return(res);
+- a.text = (char *)strcpy((char *)malloc(strlen(x)+1),x);
++ a.text = (char *)strcpy((char *)smv_malloc(strlen(x)+1),x);
+ return((string_ptr)insert_hash(string_hash,&a));
+ }