From cf0c46c27bca3de031b0ce546c11153430ebd9df Mon Sep 17 00:00:00 2001 From: hunt Date: Thu, 30 Mar 2006 20:54:00 +0000 Subject: 2006-03-30 Martin Hunt * string.c (_stp_string_cat_cstr): Use memcpy() instead of strncpy(). --- runtime/map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/map.c') 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; } -- cgit