Skip to content
Snippets Groups Projects
Commit f239ed08 authored by Federico Montesino Pouzols's avatar Federico Montesino Pouzols
Browse files

fix uninit coverity issue 1075318, re #11829

parent 434e978b
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ class SCRIPT_DLL_EXPORT ScriptRepositoryImpl : public ScriptRepository {
downloaded_date(Kernel::DateAndTime::defaultTime()),
pub_date(Kernel::DateAndTime::defaultTime()), description(""),
downloaded_pubdate(Kernel::DateAndTime::defaultTime()),
auto_update(false), author(""){};
auto_update(false), author(""), status(BOTH_UNCHANGED) {};
};
typedef std::map<std::string, RepositoryEntry> Repository;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment