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
c552fad6
Unverified
Commit
c552fad6
authored
Feb 20, 2020
by
Salvatore Sanfilippo
Committed by
GitHub
Feb 20, 2020
Browse files
Merge pull request #6864 from guybe7/fix_memleak_in_test_ld_conv
Fix memory leak in test_ld_conv
parents
155526a4
5c73a6e2
Changes
1
Show whitespace changes
Inline
Side-by-side
tests/modules/misc.c
View file @
c552fad6
...
...
@@ -74,6 +74,7 @@ int test_ld_conv(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
RedisModule_ReplyWithError
(
ctx
,
err
);
goto
final
;
}
/* Make sure we can't convert a string that has \0 in it */
char
buf
[
4
]
=
"123"
;
buf
[
1
]
=
'\0'
;
...
...
@@ -81,8 +82,11 @@ int test_ld_conv(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
long
double
ld3
;
if
(
RedisModule_StringToLongDouble
(
s3
,
&
ld3
)
==
REDISMODULE_OK
)
{
RedisModule_ReplyWithError
(
ctx
,
"Invalid string successfully converted to long double"
);
RedisModule_FreeString
(
ctx
,
s3
);
goto
final
;
}
RedisModule_FreeString
(
ctx
,
s3
);
RedisModule_ReplyWithLongDouble
(
ctx
,
ld2
);
final:
RedisModule_FreeString
(
ctx
,
s1
);
...
...
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