removed the unused buffer offset

pull/1/head
John Safranek 2014-12-17 09:30:10 -08:00
parent b1e32737c2
commit a2f55d517e
1 changed files with 0 additions and 1 deletions

View File

@ -114,7 +114,6 @@ typedef struct Buffer {
uint32_t bufferSz; /* current buffer size */
ALIGN16 uint8_t staticBuffer[STATIC_BUFFER_LEN];
uint8_t dynamicFlag; /* dynamic memory currently in use */
uint32_t offset; /* Offset from start of buffer to data. */
} Buffer;
WOLFSSH_LOCAL int BufferInit(Buffer*, uint32_t, void*);