projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
68b64fb
)
Rewrite timeout computation in a way that is less prone to overflow.
author
Bodo Möller
<bodo@openssl.org>
Fri, 30 Dec 2005 23:51:36 +0000
(23:51 +0000)
committer
Bodo Möller
<bodo@openssl.org>
Fri, 30 Dec 2005 23:51:36 +0000
(23:51 +0000)
(Problem reported by Peter Sylvester.)
ssl/ssl_sess.c
patch
|
blob
|
history
diff --git
a/ssl/ssl_sess.c
b/ssl/ssl_sess.c
index 5286964e694142b651b15d997aad77ec817813f1..7a4bb92b5c2ced151bbda55ab4529981a43e2428 100644
(file)
--- a/
ssl/ssl_sess.c
+++ b/
ssl/ssl_sess.c
@@
-389,7
+389,7
@@
int ssl_get_prev_session(SSL *s, unsigned char *session_id, int len)
CRYPTO_add(&ret->references,1,CRYPTO_LOCK_SSL_SESSION);
#endif
- if (
(long)(ret->time+ret->timeout) < (long)time(NULL
)) /* timeout */
+ if (
ret->timeout < (long)(time(NULL) - ret->time
)) /* timeout */
{
s->ctx->stats.sess_timeout++;
/* remove it from the cache */