From 0ec132aed9d864ac056b97d49e3f38681394b812 Mon Sep 17 00:00:00 2001 From: Josh Baker Date: Thu, 8 Sep 2016 17:46:03 -0700 Subject: [PATCH] copy fix --- redcon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redcon.go b/redcon.go index 236cbed..def4c8b 100644 --- a/redcon.go +++ b/redcon.go @@ -271,7 +271,7 @@ func handle( for i := 0; i < len(cmds); i++ { scmds[i] = make([]string, len(cmds[i])) for j := 0; j < len(scmds[i]); j++ { - scmds[i][j] = string(scmds[i][j]) + scmds[i][j] = string(cmds[i][j]) } } shandler(c, scmds)