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
cca35775
Unverified
Commit
cca35775
authored
Feb 16, 2022
by
Matteo Baccan
Committed by
GitHub
Feb 16, 2022
Browse files
Removed double semicolon at the end of line (#10305)
parent
3881f785
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/aof.c
View file @
cca35775
...
@@ -627,7 +627,7 @@ void aofUpgradePrepare(aofManifest *am) {
...
@@ -627,7 +627,7 @@ void aofUpgradePrepare(aofManifest *am) {
server
.
aof_dirname
,
server
.
aof_dirname
,
strerror
(
errno
));
strerror
(
errno
));
sdsfree
(
aof_filepath
);
sdsfree
(
aof_filepath
);
exit
(
1
);
;
exit
(
1
);
}
}
sdsfree
(
aof_filepath
);
sdsfree
(
aof_filepath
);
...
...
src/debug.c
View file @
cca35775
...
@@ -921,7 +921,7 @@ NULL
...
@@ -921,7 +921,7 @@ NULL
addReplyStatus
(
c
,
"Apparently Redis did not crash: test passed"
);
addReplyStatus
(
c
,
"Apparently Redis did not crash: test passed"
);
}
else
if
(
!
strcasecmp
(
c
->
argv
[
1
]
->
ptr
,
"set-disable-deny-scripts"
)
&&
c
->
argc
==
3
)
}
else
if
(
!
strcasecmp
(
c
->
argv
[
1
]
->
ptr
,
"set-disable-deny-scripts"
)
&&
c
->
argc
==
3
)
{
{
server
.
script_disable_deny_script
=
atoi
(
c
->
argv
[
2
]
->
ptr
);
;
server
.
script_disable_deny_script
=
atoi
(
c
->
argv
[
2
]
->
ptr
);
addReply
(
c
,
shared
.
ok
);
addReply
(
c
,
shared
.
ok
);
}
else
if
(
!
strcasecmp
(
c
->
argv
[
1
]
->
ptr
,
"config-rewrite-force-all"
)
&&
c
->
argc
==
2
)
}
else
if
(
!
strcasecmp
(
c
->
argv
[
1
]
->
ptr
,
"config-rewrite-force-all"
)
&&
c
->
argc
==
2
)
{
{
...
...
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