]> git.saurik.com Git - redis.git/commit - tests/unit/bitops.tcl
BITOP bug when called against non existing keys fixed.
authorantirez <antirez@gmail.com>
Thu, 31 May 2012 19:45:39 +0000 (21:45 +0200)
committerantirez <antirez@gmail.com>
Thu, 31 May 2012 19:52:47 +0000 (21:52 +0200)
commit1419406e8dd828f12b4810286d701b2b87ccd7ee
treef2fc3ead23abe5472d2ae73420f6ee19e65b43bb
parentbc70b8e5f4a161db0efbc95e3afda884b85b5229
BITOP bug when called against non existing keys fixed.

In the issue #529 an user reported a bug that can be triggered with the
following code:

flushdb
set a
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
bitop or x a b

The bug was introduced with the speed optimization in commit 8bbc076
that specializes every BITOP operation loop up to the minimum length of
the input strings.

However the computation of the minimum length contained an error when a
non existing key was present in the input, after a key that was non zero
length.

This commit fixes the bug and adds a regression test for it.
src/bitops.c
tests/unit/bitops.tcl