From fb6246cff77c81c39984169ec1cf489d39d6f5f9 Mon Sep 17 00:00:00 2001 From: William JCM Date: Mon, 21 Nov 2022 18:58:57 +0100 Subject: [PATCH] Profile: ensure a profile is invalid if the GVAS underneath is too. --- src/Profile/Profile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Profile/Profile.cpp b/src/Profile/Profile.cpp index 7fc99f7..c432188 100644 --- a/src/Profile/Profile.cpp +++ b/src/Profile/Profile.cpp @@ -35,6 +35,7 @@ Profile::Profile(Containers::StringView path): { if(!_profile.valid()) { _lastError = _profile.lastError(); + _valid = false; return; }