diff options
| -rw-r--r-- | http.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2780,7 +2780,9 @@ static int append_expire(struct dynstr *const d, const struct tm *const exp) ret = 0; end: - freelocale(l); + if (l != (locale_t)0) + freelocale(l); + return ret; } |
