Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 01997f08 authored by ORDRONNEAU Camille's avatar ORDRONNEAU Camille Committed by Philippe SWARTVAGHER
Browse files

Fix Coverity issue #507423 Uninitialize pointer field

parent c350b721
No related branches found
No related tags found
1 merge request!105Fix some Coverity and SonarCube bugs
......@@ -209,7 +209,7 @@ void Export::open_export_window(QWidget *parent, RenderLayout *render_layout) {
void Export::open_export_variable_window(const std::map<std::string, Variable *> &variable_list, const std::string &export_filename) {
Ui_counter_choice_box export_variable_window;
QDialog dialog_box;
QDialog dialog_box(nullptr);
export_variable_window.setupUi(&dialog_box);
for (std::map<std::string, Variable *>::const_iterator it = variable_list.begin();
......
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