diff options
author | Tom Lane | 2017-05-07 16:33:12 +0000 |
---|---|---|
committer | Tom Lane | 2017-05-07 16:33:35 +0000 |
commit | da55df018ab196819f275c1fb37e7f3fe20cb564 (patch) | |
tree | 3ce0aaea7be0d30e60d92f2d148aad58866659bf | |
parent | 82e7d3dfd17fc17738a1eb35d1b45677b66a88f5 (diff) |
Guard against null t->tm_zone in strftime.c.
The upstream IANA code does not guard against null TM_ZONE pointers in this
function, but in our code there is such a check in the other pre-existing
use of t->tm_zone. We do have some places that set pg_tm.tm_zone to NULL.
I'm not entirely sure it's possible to reach strftime with such a value,
but I'm not sure it isn't either, so be safe.
Per Coverity complaint.
-rw-r--r-- | src/timezone/strftime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/timezone/strftime.c b/src/timezone/strftime.c index ab8f60e9c8f..2f32cf8bdb7 100644 --- a/src/timezone/strftime.c +++ b/src/timezone/strftime.c @@ -459,7 +459,8 @@ _fmt(const char *format, const struct pg_tm * t, char *pt, const char *ptlim, negative = diff < 0; if (diff == 0) { - negative = t->tm_zone[0] == '-'; + if (t->tm_zone != NULL) + negative = t->tm_zone[0] == '-'; } if (negative) { |