Skip to content

Commit

Permalink
Merge pull request #319 from bmharper/master
Browse files Browse the repository at this point in the history
Fix uninitialized variable m_QuickstartGen
  • Loading branch information
deplinenoise authored Apr 24, 2019
2 parents cf63afd + 83732f8 commit 25c39de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,17 @@ void DriverOptionsInit(DriverOptions* self)
self->m_DisplayStats = false;
self->m_GenDagOnly = false;
self->m_Quiet = false;
self->m_IdeGen = false;
self->m_Clean = false;
self->m_Rebuild = false;
self->m_IdeGen = false;
self->m_DebugSigning = false;
self->m_ContinueOnError = false;
self->m_QuickstartGen = false;
self->m_ThreadCount = GetCpuCount();
self->m_WorkingDir = nullptr;
self->m_DAGFileName = ".tundra2.dag";
self->m_ProfileOutput = nullptr;
#if defined(TUNDRA_WIN32)
#if defined(TUNDRA_WIN32)
self->m_RunUnprotected = false;
#endif
}
Expand Down

0 comments on commit 25c39de

Please sign in to comment.