diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-14 15:58:15 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-04-14 15:58:15 +0300 |
commit | 7466599b374694c1640faee1b6a0a4760fbe718a (patch) | |
tree | e06c92d8e96a9cda336c50777285e3f886728ef4 /builtin.c | |
parent | 54b3ab3109d5aa01595920e06ca25a815ad525a0 (diff) | |
parent | 3fc38ff001d5a4345def6ce960918612ed209518 (diff) | |
download | egawk-7466599b374694c1640faee1b6a0a4760fbe718a.tar.gz egawk-7466599b374694c1640faee1b6a0a4760fbe718a.tar.bz2 egawk-7466599b374694c1640faee1b6a0a4760fbe718a.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1951,6 +1951,9 @@ do_strftime(int nargs) else tm = localtime(& fclock); + if (tm == NULL) + return make_string("", 0); + bufp = buf; bufsize = sizeof(buf); for (;;) { |