summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/txn/txn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/txn/txn.c')
-rw-r--r--src/third_party/wiredtiger/src/txn/txn.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/src/txn/txn.c b/src/third_party/wiredtiger/src/txn/txn.c
index 2449c1ccabe..0469882c08e 100644
--- a/src/third_party/wiredtiger/src/txn/txn.c
+++ b/src/third_party/wiredtiger/src/txn/txn.c
@@ -1038,7 +1038,7 @@ __wt_txn_commit(WT_SESSION_IMPL *session, const char *cfg[])
* any cached snapshots have to be refreshed.
*/
if (!readonly)
- (void)__wt_gen_next(session, WT_GEN_COMMIT);
+ WT_IGNORE_RET(__wt_gen_next(session, WT_GEN_COMMIT));
/* First check if we've already committed something in the future. */
if (update_timestamp) {
@@ -1067,7 +1067,8 @@ __wt_txn_commit(WT_SESSION_IMPL *session, const char *cfg[])
* because the user's data is committed.
*/
if (!readonly)
- (void)__wt_cache_eviction_check(session, false, false, NULL);
+ WT_IGNORE_RET(
+ __wt_cache_eviction_check(session, false, false, NULL));
return (0);
err: /*
@@ -1301,7 +1302,8 @@ __wt_txn_rollback(WT_SESSION_IMPL *session, const char *cfg[])
* because the user's data is committed.
*/
if (!readonly)
- (void)__wt_cache_eviction_check(session, false, false, NULL);
+ WT_IGNORE_RET(
+ __wt_cache_eviction_check(session, false, false, NULL));
return (ret);
}