From: Daniel Stenberg Date: Thu, 17 Nov 2011 22:46:29 +0000 (+0100) Subject: Curl_ssl_getsessionid: increase the value, not the pointer X-Git-Tag: curl-7_24_0~199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb4eb589969c6191720295e59d510cb1d8f9c0ce;p=thirdparty%2Fcurl.git Curl_ssl_getsessionid: increase the value, not the pointer --- diff --git a/lib/sslgen.c b/lib/sslgen.c index 262ce42c4b..23c07e73b5 100644 --- a/lib/sslgen.c +++ b/lib/sslgen.c @@ -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)