Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
614cd408
Commit
614cd408
authored
Jul 15, 2010
by
hjk
Browse files
projectexplorer: fix crash on uninitialized pointer
parent
fc3b5036
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/runconfiguration.cpp
View file @
614cd408
...
...
@@ -221,7 +221,7 @@ IRunControlFactory::~IRunControlFactory()
}
RunControl
::
RunControl
(
RunConfiguration
*
runConfiguration
,
QString
mode
)
:
m_runMode
(
mode
),
m_runConfiguration
(
runConfiguration
)
:
m_runMode
(
mode
),
m_runConfiguration
(
runConfiguration
)
,
m_outputFormatter
(
0
)
{
if
(
runConfiguration
)
{
m_displayName
=
runConfiguration
->
displayName
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment