about summary refs log tree commit diff
path: root/string/test-strnlen.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2021-03-27 09:15:00 -0700
committerH.J. Lu <hjl.tools@gmail.com>2021-03-27 10:54:44 -0700
commit86859b7e58d8670b186c5209ba25f0fbd6612fb7 (patch)
tree31180b8603444e42dc2551cfc2b0e982c6f145b1 /string/test-strnlen.c
parent7ab232e081ffd4175b59d64619a30bf8062df097 (diff)
downloadglibc-86859b7e58d8670b186c5209ba25f0fbd6612fb7.tar.gz
glibc-86859b7e58d8670b186c5209ba25f0fbd6612fb7.tar.xz
glibc-86859b7e58d8670b186c5209ba25f0fbd6612fb7.zip
test-strnlen.c: Initialize wchar_t string with wmemset [BZ #27655]
Use wmemset to initialize wchar_t string.
Diffstat (limited to 'string/test-strnlen.c')
-rw-r--r--string/test-strnlen.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/string/test-strnlen.c b/string/test-strnlen.c
index 61eb521dc1..0293acbc71 100644
--- a/string/test-strnlen.c
+++ b/string/test-strnlen.c
@@ -27,6 +27,7 @@
 
 #ifndef WIDE
 # define STRNLEN strnlen
+# define MEMSET memset
 # define CHAR char
 # define BIG_CHAR CHAR_MAX
 # define MIDDLE_CHAR 127
@@ -34,6 +35,7 @@
 #else
 # include <wchar.h>
 # define STRNLEN wcsnlen
+# define MEMSET wmemset
 # define CHAR wchar_t
 # define BIG_CHAR WCHAR_MAX
 # define MIDDLE_CHAR 1121
@@ -153,7 +155,7 @@ do_page_tests (void)
   size_t last_offset = (page_size / sizeof (CHAR)) - 1;
 
   CHAR *s = (CHAR *) buf2;
-  memset (s, 65, (last_offset - 1));
+  MEMSET (s, 65, (last_offset - 1));
   s[last_offset] = 0;
 
   /* Place short strings ending at page boundary.  */