mirror of
https://github.com/encryptogroup/PSI.git
synced 2024-03-22 13:30:44 +08:00
Fixed another bug in counter
This commit is contained in:
parent
0810b0e1e1
commit
78b2e2a16c
|
@ -82,7 +82,7 @@ public:
|
|||
uint32_t hashinbytes = m_nCodeWordBytes + sizeof(uint64_t);
|
||||
uint8_t *Mptr = matrix.GetArr();
|
||||
CBitVector mask(m_nCodeWordBits * m_nExpansionFactor);
|
||||
uint8_t* hash_buf = (uint8_t*) mlloc(m_nCodeWordBytes * m_nExpansionFactor);
|
||||
uint8_t* hash_buf = (uint8_t*) malloc(m_nCodeWordBytes * m_nExpansionFactor);
|
||||
uint8_t* mask_ptr;
|
||||
uint8_t* hash_ptr;
|
||||
uint8_t* tmpbuf = (uint8_t*) calloc(hashinbytes, sizeof(uint8_t));
|
||||
|
|
Loading…
Reference in New Issue
Block a user