From: Hwankyu Jhun Date: Thu, 17 Feb 2022 00:05:21 +0000 (+0900) Subject: Fix static analysis issue X-Git-Tag: accepted/tizen/unified/20220218.152646~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F93%2F271193%2F2;p=platform%2Fcore%2Fappfw%2Faul-1.git Fix static analysis issue - Initialize member variable Change-Id: I6c5743825481a0e0585bf5c580b6e526d4b1d914 Signed-off-by: Hwankyu Jhun --- diff --git a/parser/boot-sequencer/parser_plugin.hh b/parser/boot-sequencer/parser_plugin.hh index df15223..e6cceef 100644 --- a/parser/boot-sequencer/parser_plugin.hh +++ b/parser/boot-sequencer/parser_plugin.hh @@ -53,7 +53,7 @@ class ParserPlugin { private: std::unique_ptr db_; - xmlDocPtr doc_; + xmlDocPtr doc_ = nullptr; std::unique_ptr args_; std::unique_ptr backup_args_; };