summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/block/block_ext.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/block/block_ext.c')
-rw-r--r--src/third_party/wiredtiger/src/block/block_ext.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/src/block/block_ext.c b/src/third_party/wiredtiger/src/block/block_ext.c
index 28c39c71a08..e5b3a9e5d98 100644
--- a/src/third_party/wiredtiger/src/block/block_ext.c
+++ b/src/third_party/wiredtiger/src/block/block_ext.c
@@ -1,4 +1,5 @@
/*-
+ * Copyright (c) 2014-2015 MongoDB, Inc.
* Copyright (c) 2008-2014 WiredTiger, Inc.
* All rights reserved.
*
@@ -1199,7 +1200,7 @@ corrupted: WT_PANIC_RET(session, WT_ERROR,
if (WT_VERBOSE_ISSET(session, WT_VERB_BLOCK))
WT_ERR(__block_extlist_dump(session, "read extlist", el, 0));
-err: __wt_scr_free(&tmp);
+err: __wt_scr_free(session, &tmp);
return (ret);
}
@@ -1295,7 +1296,7 @@ __wt_block_extlist_write(WT_SESSION_IMPL *session,
"%s written %" PRIdMAX "/%" PRIu32,
el->name, (intmax_t)el->offset, el->size));
-err: __wt_scr_free(&tmp);
+err: __wt_scr_free(session, &tmp);
return (ret);
}