From dc5faebb8d60a298e1df8f707bf6174693fdc628 Mon Sep 17 00:00:00 2001 From: toddouska Date: Sat, 7 Mar 2015 10:05:36 -0800 Subject: [PATCH] optimize buffer layout --- wolfssl/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/internal.h b/wolfssl/internal.h index 0265dd2cd..6a3490e41 100644 --- a/wolfssl/internal.h +++ b/wolfssl/internal.h @@ -951,8 +951,8 @@ WOLFSSL_LOCAL int DoApplicationData(WOLFSSL* ssl, byte* input, word32* inOutIdx) /* wolfSSL buffer type */ typedef struct buffer { - word32 length; byte* buffer; + word32 length; } buffer;