1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Curl_ssl_getsessionid: increase the value, not the pointer

This commit is contained in:
Daniel Stenberg 2011-11-17 23:46:29 +01:00
parent fc8809f993
commit bb4eb58996

View File

@ -255,7 +255,7 @@ int Curl_ssl_getsessionid(struct connectdata *conn,
(conn->remote_port == check->remote_port) &&
Curl_ssl_config_matches(&conn->ssl_config, &check->ssl_config)) {
/* yes, we have a session ID! */
*general_age++; /* increase general age */
(*general_age)++; /* increase general age */
check->age = *general_age; /* set this as used in this age */
*ssl_sessionid = check->sessionid;
if(idsize)