asan: fix the constant for new allocator cache

llvm-svn: 172526
This commit is contained in:
Dmitry Vyukov 2013-01-15 10:45:18 +00:00
parent 3f32c1e860
commit 0d46b2b95e
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ struct AsanThreadLocalMallocStorage {
AsanChunk *free_lists_[kNumberOfSizeClasses];
#else
uptr quarantine_cache[16];
uptr allocator2_cache[1024]; // Opaque.
uptr allocator2_cache[96 * (512 * 8 + 16)]; // Opaque.
#endif
void CommitBack();
};