From 199ec626bf3d3eb32ef42fb0625d99b13098a475 Mon Sep 17 00:00:00 2001 From: Packit Service Date: Dec 10 2020 00:14:14 +0000 Subject: Apply patch opensp-sigsegv.patch patch_name: opensp-sigsegv.patch present_in_specfile: true --- diff --git a/lib/ExtendEntityManager.cxx b/lib/ExtendEntityManager.cxx index fb73a07..19e44c0 100644 --- a/lib/ExtendEntityManager.cxx +++ b/lib/ExtendEntityManager.cxx @@ -1238,7 +1238,8 @@ StorageObjectSpec::StorageObjectSpec() } StorageObjectSpec::StorageObjectSpec(const StorageObjectSpec& x) -: codingSystemName(x.codingSystemName), +: storageManager(x.storageManager), + codingSystemName(x.codingSystemName), codingSystem(x.codingSystem), specId(x.specId), baseId(x.baseId), @@ -1253,6 +1254,7 @@ StorageObjectSpec::StorageObjectSpec(const StorageObjectSpec& x) StorageObjectSpec& StorageObjectSpec::operator=(const StorageObjectSpec& x) { if (this != &x) { + storageManager = x.storageManager; codingSystemName = x.codingSystemName; codingSystem = x.codingSystem; specId = x.specId;