Remove duplicate setting of ssl->in_msgtype and ssl->in_msglen
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index fb3a4a0..bb51575 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -6153,14 +6153,10 @@
      * assuming no CID and no offset between record content and
      * record plaintext. */
     ssl_update_in_pointers( ssl );
-
-    /* Setup internal message pointers from record structure. */
-    ssl->in_msgtype = rec.type;
 #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
     ssl->in_len = ssl->in_cid + rec.cid_len;
 #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
     ssl->in_iv  = ssl->in_msg = ssl->in_len + 2;
-    ssl->in_msglen = rec.data_len;
 
     /* The record content type may change during decryption,
      * so re-read it. */