From: Paul Eggert Date: Sat, 19 Mar 2005 05:34:28 +0000 (+0000) Subject: (my_strftime): If the underlying strftime returns 0 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=077c39d9c71c304f77aee30c1982cb7c401e3065;p=pspp (my_strftime): If the underlying strftime returns 0 (which shouldn't happen), generate nothing instead of returning 0 immediately, so that nstrftime (NULL, ...) doesn't return 0. --- diff --git a/lib/strftime.c b/lib/strftime.c index 3be18a2b63..71052daeb6 100644 --- a/lib/strftime.c +++ b/lib/strftime.c @@ -780,9 +780,8 @@ my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format, *u++ = format_char; *u = '\0'; len = strftime (ubuf, sizeof ubuf, ufmt, tp); - if (len == 0) - return 0; - cpy (len - 1, ubuf + 1); + if (len != 0) + cpy (len - 1, ubuf + 1); } break; #endif