handle localtime errors in ctime
authorRich Felker <dalias@aerifal.cx>
Thu, 15 Jun 2017 16:58:08 +0000 (12:58 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 15 Jun 2017 16:58:08 +0000 (12:58 -0400)
commit5c10c33d2a35204ee76931625a007fcc8cca3228
tree8847a78536f72c9c062ad5cd2bedc6fd4ae79ee4
parent1c86c7f5c26dd0569df7afc23ee9866fb3f645dc
handle localtime errors in ctime

ctime passes the result from localtime directly to asctime. But in case
of error, localtime returns 0. This causes an error (NULL pointer
dereference) in asctime.

based on patch by Omer Anson.
src/time/ctime.c