From 077bcc7c324f76d5a783ec8cfcb2a58582b778e2 Mon Sep 17 00:00:00 2001 From: Harry Jeffery <henry.jeffery@stfc.ac.uk> Date: Mon, 9 Feb 2015 16:07:02 +0000 Subject: [PATCH] Refs #11014 Resolves Coverity 107624{1,0} --- Code/Mantid/MantidPlot/src/ApplicationWindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Code/Mantid/MantidPlot/src/ApplicationWindow.cpp b/Code/Mantid/MantidPlot/src/ApplicationWindow.cpp index acb7b16c1fc..7d2c32bd9aa 100644 --- a/Code/Mantid/MantidPlot/src/ApplicationWindow.cpp +++ b/Code/Mantid/MantidPlot/src/ApplicationWindow.cpp @@ -4373,6 +4373,8 @@ void ApplicationWindow::importASCII(const QStringList& files, int import_mode, c if (w->inherits("Table")){ Table *t = dynamic_cast<Table*>(w); + if (!t) + return; t->importASCII(files[0], local_column_separator, local_ignored_lines, local_rename_columns, local_strip_spaces, local_simplify_spaces, local_import_comments, local_comment_string, import_read_only, Table::Overwrite, endLineChar); @@ -4381,6 +4383,8 @@ void ApplicationWindow::importASCII(const QStringList& files, int import_mode, c t->notifyChanges(); } else if (w->isA("Matrix")){ Matrix *m = dynamic_cast<Matrix*>(w); + if (!m) + return; m->importASCII(files[0], local_column_separator, local_ignored_lines, local_strip_spaces, local_simplify_spaces, local_comment_string, Matrix::Overwrite, local_separators, endLineChar); -- GitLab