From b73b59cf660c327bdd129b0a1fb2df5b3b968d76 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 27 Dec 2020 14:24:22 +0100 Subject: [PATCH] - fixed badly inherited exception subclass. --- source/common/filesystem/ancientzip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/filesystem/ancientzip.h b/source/common/filesystem/ancientzip.h index 3b1497e02..621505504 100644 --- a/source/common/filesystem/ancientzip.h +++ b/source/common/filesystem/ancientzip.h @@ -41,7 +41,7 @@ public: int Explode(unsigned char *out, unsigned int outsize, FileReader &in, unsigned int insize, int flags); }; -class CExplosionError : CRecoverableError +class CExplosionError : public CRecoverableError { public: CExplosionError(const char *message) : CRecoverableError(message) {}