Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-01-11 11:09:27 +0300
committerBodo Möller <bodo@openssl.org>2000-01-11 11:09:27 +0300
commit3cc6cdea0f673eadc61b97756a2ff46281749b5e (patch)
treeaca9719ae6ce00702b08006875aea9cd66df73ae /ssl/s3_pkt.c
parentc51ae173a653c346fd8138a44b7009e08e192e92 (diff)
The buffer in ss3_read_n cannot actually occur because it is never
called with max > n when extend is set.
Diffstat (limited to 'ssl/s3_pkt.c')
-rw-r--r--ssl/s3_pkt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c
index 38063b50d5..7728284bef 100644
--- a/ssl/s3_pkt.c
+++ b/ssl/s3_pkt.c
@@ -293,7 +293,7 @@ again:
goto f_err;
}
- s->rstate=SSL_ST_READ_BODY;
+ /* now s->rstate == SSL_ST_READ_BODY; */
}
/* get and decode the data */