Details
-
Bug
-
Status: Closed (View Workflow)
-
Resolution: Fixed
-
None
-
None
-
None
Description
The code coverage report highlighted the following line from multi_range_read.cc
720 2322 : if (!*key2) // key1(NULL) < key2(notNULL)
721 2322 : return -1;
722 0 : goto equals;
723 : }
the "goto equals" part is unreachable , but the equals: label does contain some code.