mirror of
https://github.com/apache/httpd.git
synced 2025-07-29 12:10:29 +00:00
* server/util_cookies.c (ap_cookie_write2): Add missing sentinel in
apr_pstrcat call. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@683286 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -77,7 +77,7 @@ AP_DECLARE(apr_status_t) ap_cookie_write2(request_rec * r, const char *name2, co
|
||||
/* handle expiry */
|
||||
buffer = "";
|
||||
if (maxage) {
|
||||
buffer = apr_pstrcat(r->pool, "Max-Age=", apr_ltoa(r->pool, maxage), ";");
|
||||
buffer = apr_pstrcat(r->pool, "Max-Age=", apr_ltoa(r->pool, maxage), ";", NULL);
|
||||
}
|
||||
|
||||
/* create RFC2965 compliant cookie */
|
||||
|
Reference in New Issue
Block a user