From d2ad8286a0e3abb63dd7789c9077b628467ff3e4 Mon Sep 17 00:00:00 2001
From: "acurtis/antony@xiphis.org/ltamd64.xiphis.org" <>
Date: Tue, 19 Feb 2008 13:46:54 -0800
Subject: backport valgrind cleanups from 6.0-engines

---
 strings/strmake.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'strings/strmake.c')

diff --git a/strings/strmake.c b/strings/strmake.c
index df8d78e8476..2d5fa5e36aa 100644
--- a/strings/strmake.c
+++ b/strings/strmake.c
@@ -41,9 +41,9 @@ char *strmake(register char *dst, register const char *src, size_t length)
     write a character rather than '\0' as this makes spotting these
     problems in the results easier.
   */
-  uint n= strlen(src) + 1;
-  if (n <= length)
-    memset(dst + n, (int) 'Z', length - n + 1);
+  uint n= 0;
+  while (n < length && src[n++]);
+  memset(dst + n, (int) 'Z', length - n + 1);
 #endif
 
   while (length--)
-- 
cgit v1.2.1