summaryrefslogtreecommitdiff
path: root/lib/strftime.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-03-14 23:23:25 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-03-14 23:23:25 +0000
commit2f82566ff2228a7d96d58d378fb6070d849124f1 (patch)
tree2b4610f673794408f658484b9f31a01b198145a8 /lib/strftime.c
parentb6f7c33a382dc2d0e2eeb4d038d6a89d5442503d (diff)
downloadcoreutils-2f82566ff2228a7d96d58d378fb6070d849124f1.tar.xz
* strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
&& HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[].
Diffstat (limited to 'lib/strftime.c')
-rw-r--r--lib/strftime.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/strftime.c b/lib/strftime.c
index 8085a5992..78a963b42 100644
--- a/lib/strftime.c
+++ b/lib/strftime.c
@@ -776,6 +776,7 @@ my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format,
*u++ = modifier;
*u++ = format_char;
*u = '\0';
+ ubuf[0] = '\1';
len = strftime (ubuf, sizeof ubuf, ufmt, tp);
if (len == 0 && ubuf[0] != '\0')
return 0;