From 598c423e65e9e35b5674d1d41581d2658242d86f Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Tue, 20 Nov 2012 15:20:40 +0000 Subject: [PATCH] don't use psec or pdays if NULL --- crypto/o_time.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/crypto/o_time.c b/crypto/o_time.c index f8cf590c27..49bff49f2b 100644 --- a/crypto/o_time.c +++ b/crypto/o_time.c @@ -289,8 +289,10 @@ int OPENSSL_gmtime_diff(struct tm *from, struct tm *to, int *pday, int *psec) diff_sec -= SECS_PER_DAY; } - *pday = (int)diff_day; - *psec = diff_sec; + if (pday) + *pday = (int)diff_day; + if (psec) + *psec = diff_sec; return 1; -- GitLab