src/share/vm/memory/binaryTreeDictionary.hpp

changeset 4197
476718ea6759
parent 4196
685df3c6f84b
child 4488
3c327c2b6782
     1.1 --- a/src/share/vm/memory/binaryTreeDictionary.hpp	Tue Sep 18 23:35:42 2012 -0700
     1.2 +++ b/src/share/vm/memory/binaryTreeDictionary.hpp	Thu Oct 25 12:59:37 2012 -0700
     1.3 @@ -259,7 +259,7 @@
     1.4      assert(res == NULL || res->is_free(),
     1.5             "Should be returning a free chunk");
     1.6      assert(dither != FreeBlockDictionary<Chunk_t>::exactly ||
     1.7 -           res->size() == size, "Not correct size");
     1.8 +           res == NULL || res->size() == size, "Not correct size");
     1.9      return res;
    1.10    }
    1.11  

mercurial