diff options
author | Martin Cox <[email protected]> | 2017-04-05 22:26:55 +0100 |
---|---|---|
committer | Martin Cox <[email protected]> | 2017-04-05 22:26:55 +0100 |
commit | ffd6bb83f541091d169a0fa556f4c6d307b9b043 (patch) | |
tree | 2cfdf2bca4fa4756b1ae51efb25da48b390e3302 /lib/xmerl/src/xmerl_sax_parser.hrl | |
parent | a1100c46c2ca2121d723edc03cb7885e3014af7c (diff) | |
download | otp-ffd6bb83f541091d169a0fa556f4c6d307b9b043.tar.gz otp-ffd6bb83f541091d169a0fa556f4c6d307b9b043.tar.bz2 otp-ffd6bb83f541091d169a0fa556f4c6d307b9b043.zip |
When a non-DST time is passed to the httpd_util:rfc1123_date/1 function, it
causes a case-clause error, as the calender:local_time_to_universal_time_dst/1
can return an empty list, which is not currently handled.
When called with an invalid DST time:
1> httpd_util:rfc1123_date({{2017, 03, 26},{1, 0, 0}}).
** exception error: no case clause matching []
in function httpd_util:rfc1123_date/1 (httpd_util.erl, line 334)
To alleviate this, simply add a clause to handle the empty list and return the
original time in the expected rfc1123 format. This is the approach of other
modules which make use of the calender:local_time_to_universal_time_dst/1
function. The formatted date is then returned without error:
2> httpd_util:rfc1123_date({{2017, 03, 26},{1, 0, 0}}).
"Sun, 26 Mar 2017 01:00:00 GMT"
Diffstat (limited to 'lib/xmerl/src/xmerl_sax_parser.hrl')
0 files changed, 0 insertions, 0 deletions