diff options
author | Keith Bostic <keith@wiredtiger.com> | 2012-12-10 14:42:24 +0000 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2012-12-10 14:42:24 +0000 |
commit | b69ff8a5edc4459eceb5256b2b2a3e260ec2d472 (patch) | |
tree | 5ec2356b51dbbcf31959efca5f355ecf0311e0bb /src/cursor/cur_dump.c | |
parent | b3238a4f40c9734e6d708b1c53ab608e50158fcc (diff) | |
download | mongo-b69ff8a5edc4459eceb5256b2b2a3e260ec2d472.tar.gz |
Add a __wt_panic function that shuts down all of the WiredTiger APIs.
Diffstat (limited to 'src/cursor/cur_dump.c')
-rw-r--r-- | src/cursor/cur_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cursor/cur_dump.c b/src/cursor/cur_dump.c index ba5d5bb57d7..52265c2a5a9 100644 --- a/src/cursor/cur_dump.c +++ b/src/cursor/cur_dump.c @@ -278,7 +278,7 @@ __curdump_close(WT_CURSOR *cursor) cursor->uri = NULL; WT_TRET(__wt_cursor_close(cursor)); - API_END(session); +err: API_END(session); return (ret); } |