Commit cdab4c3e authored by antirez's avatar antirez
Browse files

Merge branch 'unstable' of github.com:/antirez/redis into unstable

parents 7e0cc2bb c6341ce3
...@@ -1470,7 +1470,7 @@ void processInputBuffer(client *c) { ...@@ -1470,7 +1470,7 @@ void processInputBuffer(client *c) {
} }
/* Trim to pos */ /* Trim to pos */
if (c->qb_pos) { if (server.current_client != NULL && c->qb_pos) {
sdsrange(c->querybuf,c->qb_pos,-1); sdsrange(c->querybuf,c->qb_pos,-1);
c->qb_pos = 0; c->qb_pos = 0;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment