commit ebba904af9400424fb8ad6ecb57aa2e180a73a32
Author: Jean-Marc Lasgouttes <[email protected]>
Date:   Thu Oct 30 10:57:27 2025 +0100

    Fix missing initialization
    
    Spotted by Coverity Scan.
---
 src/insets/InsetSpecialChar.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/insets/InsetSpecialChar.h b/src/insets/InsetSpecialChar.h
index 22aef159ac..65310b80f0 100644
--- a/src/insets/InsetSpecialChar.h
+++ b/src/insets/InsetSpecialChar.h
@@ -57,7 +57,7 @@ public:
        };
 
        ///
-       InsetSpecialChar() : Inset(0), kind_("softhyphen") {}
+       InsetSpecialChar() : Inset(nullptr), kind_("softhyphen"), 
unknown_(false) {}
        ///
        explicit InsetSpecialChar(Buffer * buf, std::string const k);
        ///
-- 
lyx-cvs mailing list
[email protected]
https://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to