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
43151baf
Commit
43151baf
authored
May 07, 2019
by
zhaozhao.zz
Committed by
antirez
May 10, 2019
Browse files
fix memory leak when rewrite config file
parent
d3c17c9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/config.c
View file @
43151baf
...
...
@@ -1654,12 +1654,11 @@ void rewriteConfigMarkAsProcessed(struct rewriteConfigState *state, const char *
* If the old file does not exist at all, an empty state is returned. */
struct
rewriteConfigState
*
rewriteConfigReadOldFile
(
char
*
path
)
{
FILE
*
fp
=
fopen
(
path
,
"r"
);
struct
rewriteConfigState
*
state
=
zmalloc
(
sizeof
(
*
state
));
char
buf
[
CONFIG_MAX_LINE
+
1
];
int
linenum
=
-
1
;
if
(
fp
==
NULL
&&
errno
!=
ENOENT
)
return
NULL
;
char
buf
[
CONFIG_MAX_LINE
+
1
];
int
linenum
=
-
1
;
struct
rewriteConfigState
*
state
=
zmalloc
(
sizeof
(
*
state
));
state
->
option_to_line
=
dictCreate
(
&
optionToLineDictType
,
NULL
);
state
->
rewritten
=
dictCreate
(
&
optionSetDictType
,
NULL
);
state
->
numlines
=
0
;
...
...
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