From ea9cd82428acc5c0ea037fd84191fba20417a18e Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Wed, 10 Jan 2024 11:19:40 +0100 Subject: [PATCH] initialize transaction_object = 0; --- src/runtime/c/pgf/db.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runtime/c/pgf/db.cxx b/src/runtime/c/pgf/db.cxx index 066340306..a3fd9fe6d 100644 --- a/src/runtime/c/pgf/db.cxx +++ b/src/runtime/c/pgf/db.cxx @@ -428,6 +428,7 @@ PgfDB::PgfDB(const char* filepath, int flags, int mode, size_t init_size) { last_free_block_size = 0; last_free_block_txn_id= 0; seed = (unsigned long int) time(NULL); + transaction_object = 0; } PGF_INTERNAL