diff options
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8d5429b4..93efb137 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -104,6 +104,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include "modeltest.h" #endif // TEST_MODELS +#pragma warning( disable : 4428 ) using namespace MOBase; using namespace MOShared; @@ -3017,6 +3018,9 @@ void MainWindow::createModFromOverwrite() } IModInterface *newMod = createMod(name); + if (newMod == NULL) { + return; + } ModInfo::Ptr overwriteInfo = ModInfo::getByIndex(m_ContextRow); |
