diff --git a/doomsday/libdeng2/src/game/savedsession.cpp b/doomsday/libdeng2/src/game/savedsession.cpp index 4fe9887fe4..9fbd24d7c0 100644 --- a/doomsday/libdeng2/src/game/savedsession.cpp +++ b/doomsday/libdeng2/src/game/savedsession.cpp @@ -160,10 +160,8 @@ DENG2_PIMPL(SavedSession) , status (other.status) , needUpdateStatus(other.needUpdateStatus) { - if(!other.metadata.isNull()) - { - metadata.reset(new Metadata(*other.metadata)); - } + DENG2_ASSERT(!other.metadata.isNull()); + metadata.reset(new Metadata(*other.metadata)); } static SessionMetadata *readMetadata(PackageFolder const &pack)