Commit 907ca319 authored by Yoni Fogel's avatar Yoni Fogel

Addresses #307

Fixed uninitialized variable bug in a test.

git-svn-id: file:///svn/tokudb@1878 c7de825b-a66e-492c-adef-691d508d4ae1
parent e20a6264
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
int main() { int main() {
int r; int r;
toku_lock_tree* lt = NULL; toku_lock_tree* lt = NULL;
DB* db; DB* db = (DB*)1;
BOOL duplicates; BOOL duplicates;
for (duplicates = 0; duplicates < 2; duplicates++) { for (duplicates = 0; duplicates < 2; duplicates++) {
......
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