From c67e5b51697f2607390d1f2362e099b7683b5169 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Thu, 8 Aug 2019 22:41:36 +0200 Subject: [PATCH] another assert to make one segfault more explicit --- src/mc/remote/RemoteClient.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mc/remote/RemoteClient.cpp b/src/mc/remote/RemoteClient.cpp index b90b22f2dc..1828f2340a 100644 --- a/src/mc/remote/RemoteClient.cpp +++ b/src/mc/remote/RemoteClient.cpp @@ -389,6 +389,7 @@ const simgrid::mc::Variable* RemoteClient::find_variable(const char* name) const void RemoteClient::read_variable(const char* name, void* target, size_t size) const { const simgrid::mc::Variable* var = this->find_variable(name); + xbt_assert(var, "Variable %s not found", name); xbt_assert(var->address, "No simple location for this variable"); xbt_assert(var->type->full_type, "Partial type for %s, cannot check size", name); xbt_assert((size_t)var->type->full_type->byte_size == size, "Unexpected size for %s (expected %zu, was %zu)", name, -- 2.20.1