Commit 80a577fc authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

linux icc found an expression error i the cursor test

git-svn-id: file:///svn/toku/tokudb@9538 c7de825b-a66e-492c-adef-691d508d4ae1
parent f13ffc5c
......@@ -383,7 +383,7 @@ ascending_key_string_checkf (ITEMLEN keylen, bytevec key, ITEMLEN UU(vallen), by
// malloc'd previous string.
{
if (key!=NULL) {
assert(keylen=1+strlen(key));
assert(keylen == 1+strlen(key));
char **prevkeyp = v;
char *prevkey = *prevkeyp;
if (prevkey!=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