use plain buffer instead stream for SignedData

This commit is contained in:
orignal
2025-02-20 22:04:58 -05:00
parent 9ba016259d
commit 7e3d9649de

View File

@@ -36,7 +36,7 @@ namespace transport
SignedData (): m_Size(0) {} SignedData (): m_Size(0) {}
SignedData (const SignedData& other) SignedData (const SignedData& other)
{ {
m_Size = other.Size; m_Size = other.m_Size;
memcpy (m_Buf, other.m_Buf, m_Size); memcpy (m_Buf, other.m_Buf, m_Size);
} }