From ecacdf27a9ad2c15d300a8d61fd0c560030e81dd Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Fri, 10 Mar 2017 17:45:05 -0800 Subject: [PATCH] Build fix (typo) --- node/Packet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/Packet.cpp b/node/Packet.cpp index aaceb9aa..fa1b9cf4 100644 --- a/node/Packet.cpp +++ b/node/Packet.cpp @@ -2025,7 +2025,7 @@ bool Packet::dearmor(const void *key) void Packet::cryptField(const void *key,unsigned int start,unsigned int len) { - const uint8_t *const data = reinterpret_cast(data()); + const uint8_t *const data = reinterpret_cast(unsafeData()); uint8_t iv[8]; for(int i=0;i<8;++i) iv[i] = data[i]; iv[7] &= 0xf8; // mask off least significant 3 bits of packet ID / IV since this is unset when this function gets called