diff options
author | Keith Bostic <keith@wiredtiger.com> | 2013-03-14 22:10:43 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2013-03-14 22:10:43 -0400 |
commit | 7eab56a2e9e62b100f3807ad9b7842a1ac1344a7 (patch) | |
tree | 9e83a1b60d97b7378537be5d8884c9330a00972c /src | |
parent | 4b06ec9f934152315d8e07d677e28aaf9874d477 (diff) | |
download | mongo-7eab56a2e9e62b100f3807ad9b7842a1ac1344a7.tar.gz |
We're not necessarily holding the live system's spin lock when we
discard extent lists, don't involve the cached WT_EXT list.
Diffstat (limited to 'src')
-rw-r--r-- | src/block/block_ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/block_ext.c b/src/block/block_ext.c index 8e1e0b782c8..32927d73825 100644 --- a/src/block/block_ext.c +++ b/src/block/block_ext.c @@ -1265,7 +1265,7 @@ __wt_block_extlist_free( for (ext = el->off[0]; ext != NULL; ext = next) { next = ext->next[0]; - __block_ext_free(session, block, ext); + __wt_free(session, ext); } for (szp = el->sz[0]; szp != NULL; szp = nszp) { nszp = szp->next[0]; |