Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix(xlog) : Fixed compilation error if XLOG_NO_CRYPT macro was enabled #1334

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions mars/xlog/crypt/log_crypt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ namespace xlog {

const static int TEA_BLOCK_LEN = 8;

#ifndef XLOG_NO_CRYPT
static void __TeaEncrypt(uint32_t* v, uint32_t* k) {
uint32_t v0 = v[0], v1 = v[1], sum = 0, i;
const static uint32_t delta = 0x9e3779b9;
Expand All @@ -53,6 +54,7 @@ static void __TeaEncrypt(uint32_t* v, uint32_t* k) {
v[0] = v0;
v[1] = v1;
}
#endif

static uint16_t __GetSeq(bool _is_async) {
if (!_is_async) {
Expand Down