Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
4b6e73a7
Commit
4b6e73a7
authored
Aug 01, 2014
by
Matt Stancliff
Committed by
antirez
Aug 26, 2014
Browse files
Cleanup double semicolons
Closes #1161
parent
987127c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/multi.c
View file @
4b6e73a7
...
...
@@ -72,7 +72,7 @@ void queueMultiCommand(redisClient *c) {
void
discardTransaction
(
redisClient
*
c
)
{
freeClientMultiState
(
c
);
initClientMultiState
(
c
);
c
->
flags
&=
~
(
REDIS_MULTI
|
REDIS_DIRTY_CAS
|
REDIS_DIRTY_EXEC
);
;
c
->
flags
&=
~
(
REDIS_MULTI
|
REDIS_DIRTY_CAS
|
REDIS_DIRTY_EXEC
);
unwatchAllKeys
(
c
);
}
...
...
src/redis-check-dump.c
View file @
4b6e73a7
...
...
@@ -614,7 +614,7 @@ void process(void) {
printf
(
"RDB version >= 5 but no room for checksum.
\n
"
);
exit
(
1
);
}
positions
[
0
].
size
-=
8
;
;
positions
[
0
].
size
-=
8
;
}
level
=
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment