summaryrefslogtreecommitdiffstats
path: root/runtime/map.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/map.c')
-rw-r--r--runtime/map.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/map.c b/runtime/map.c
index 1e9fd62a..326f95aa 100644
--- a/runtime/map.c
+++ b/runtime/map.c
@@ -42,7 +42,7 @@ void str_copy(char *dest, char *src)
int len = strlen(src);
if (len > MAP_STRING_LENGTH - 1)
len = MAP_STRING_LENGTH - 1;
- strncpy (dest, src, len);
+ memcpy (dest, src, len);
dest[len] = 0;
}
@@ -55,7 +55,7 @@ void str_add(void *dest, char *val)
if (len > num)
len = num;
- strncpy (&dst[len1], val, len);
+ memcpy (&dst[len1], val, len);
dst[len + len1] = 0;
}