diff --git a/ssl/s3_enc.c b/ssl/s3_enc.c index 9f52c39ca..455a6f3d0 100644 --- a/ssl/s3_enc.c +++ b/ssl/s3_enc.c @@ -356,7 +356,7 @@ int ssl3_enc(SSL *s, int send) if ((s->session == NULL) || (ds == NULL) || (enc == NULL)) { - memcpy(rec->data,rec->input,rec->length); + memmove(rec->data,rec->input,rec->length); rec->input=rec->data; } else diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c index d10a23af8..18e98602b 100644 --- a/ssl/t1_enc.c +++ b/ssl/t1_enc.c @@ -420,7 +420,7 @@ int tls1_enc(SSL *s, int send) if ((s->session == NULL) || (ds == NULL) || (enc == NULL)) { - memcpy(rec->data,rec->input,rec->length); + memmove(rec->data,rec->input,rec->length); rec->input=rec->data; } else