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
1c0c5517
Commit
1c0c5517
authored
Jan 25, 2013
by
antirez
Browse files
decrRefCount -> decrRefCountVoid in list constructor.
parent
40f822da
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/object.c
View file @
1c0c5517
...
...
@@ -97,7 +97,7 @@ robj *dupStringObject(robj *o) {
robj
*
createListObject
(
void
)
{
list
*
l
=
listCreate
();
robj
*
o
=
createObject
(
REDIS_LIST
,
l
);
listSetFreeMethod
(
l
,
decrRefCount
);
listSetFreeMethod
(
l
,
decrRefCount
Void
);
o
->
encoding
=
REDIS_ENCODING_LINKEDLIST
;
return
o
;
}
...
...
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