Commit d8fee36d authored by Russ Kubik's avatar Russ Kubik Committed by Lev Walkin

Missing modification to buffer size for 9 digits

parent 3ce07b9e
...@@ -613,7 +613,7 @@ asn_time2GT_frac(GeneralizedTime_t *opt_gt, const struct tm *tm, int frac_value, ...@@ -613,7 +613,7 @@ asn_time2GT_frac(GeneralizedTime_t *opt_gt, const struct tm *tm, int frac_value,
const unsigned int buf_size = const unsigned int buf_size =
4 + 2 + 2 /* yyyymmdd */ 4 + 2 + 2 /* yyyymmdd */
+ 2 + 2 + 2 /* hhmmss */ + 2 + 2 + 2 /* hhmmss */
+ 1 + 6 /* .ffffff */ + 1 + 9 /* .fffffffff */
+ 1 + 4 /* +hhmm */ + 1 + 4 /* +hhmm */
+ 1 /* '\0' */ + 1 /* '\0' */
; ;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment