summaryrefslogtreecommitdiff
path: root/lib/tdb/test/run-transaction-expand.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tdb/test/run-transaction-expand.c')
-rw-r--r--lib/tdb/test/run-transaction-expand.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/tdb/test/run-transaction-expand.c b/lib/tdb/test/run-transaction-expand.c
index 1271d92b33..d62c76a88c 100644
--- a/lib/tdb/test/run-transaction-expand.c
+++ b/lib/tdb/test/run-transaction-expand.c
@@ -73,6 +73,11 @@ int main(int argc, char *argv[])
data.dsize = 0;
data.dptr = calloc(1000, getpagesize());
+ if (data.dptr == NULL) {
+ diag("Unable to allocate memory for data.dptr");
+ tdb_close(tdb);
+ exit(1);
+ }
/* Simulate a slowly growing record. */
for (i = 0; i < 1000; i++)