summaryrefslogtreecommitdiff
path: root/lib/ntdb/private.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ntdb/private.h')
-rw-r--r--lib/ntdb/private.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/ntdb/private.h b/lib/ntdb/private.h
index ee8eeb76af..f46b5ef906 100644
--- a/lib/ntdb/private.h
+++ b/lib/ntdb/private.h
@@ -630,6 +630,18 @@ enum NTDB_ERROR COLD PRINTF_FMT(4, 5)
enum ntdb_log_level level,
const char *fmt, ...);
+static inline enum NTDB_ERROR ntdb_oob(struct ntdb_context *ntdb,
+ ntdb_off_t off, ntdb_len_t len,
+ bool probe)
+{
+ if (likely(off + len >= off)
+ && likely(off + len <= ntdb->file->map_size)
+ && likely(!probe)) {
+ return NTDB_SUCCESS;
+ }
+ return ntdb->io->oob(ntdb, off, len, probe);
+}
+
#ifdef NTDB_TRACE
void ntdb_trace(struct ntdb_context *ntdb, const char *op);
void ntdb_trace_seqnum(struct ntdb_context *ntdb, uint32_t seqnum, const char *op);