⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "7.1.3"
version = "7.1.4"

homepage = "https://github.com/eBay/Homestore"
description = "HomeStore Storage Engine"
Expand Down
5 changes: 4 additions & 1 deletion src/lib/index/index_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,10 @@ IndexBuffer::IndexBuffer(BlkId blkid, uint32_t buf_size, uint32_t align_size) :
IndexBuffer::IndexBuffer(uint8_t* raw_bytes, BlkId blkid) : m_blkid(blkid), m_bytes{raw_bytes} {}

IndexBuffer::~IndexBuffer() {
if (m_bytes) { hs_utils::iobuf_free(m_bytes, sisl::buftag::btree_node); }
if (m_bytes) {
hs_utils::iobuf_free(m_bytes, sisl::buftag::btree_node);
m_bytes = nullptr;
}
}

std::string IndexBuffer::to_string() const {
Expand Down
5 changes: 4 additions & 1 deletion src/lib/replication/repl_dev/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ ReplServiceError repl_req_ctx::init(repl_key rkey, journal_type_t op_code, bool
}

repl_req_ctx::~repl_req_ctx() {
if (m_journal_entry) { m_journal_entry->~repl_journal_entry(); }
if (m_journal_entry) {
m_journal_entry->~repl_journal_entry();
m_journal_entry = nullptr;
}
}

void repl_req_ctx::create_journal_entry(bool is_raft_buf, int32_t server_id) {
Expand Down
Loading