Merge lp:~gordallott/unity/fix-uninitalised-view_variable into lp:unity

Proposed by Gord Allott
Status: Merged
Merged at revision: 2280
Proposed branch: lp:~gordallott/unity/fix-uninitalised-view_variable
Merge into: lp:unity
Diff against target: 11 lines (+1/-0)
1 file modified
plugins/unityshell/src/DashController.cpp (+1/-0)
To merge this branch: bzr merge lp:~gordallott/unity/fix-uninitalised-view_variable
Reviewer Review Type Date Requested Status
Didier Roche-Tolomelli Approve
Review via email: mp+101746@code.launchpad.net

Commit message

fixes an uninitalised variable in the dashview code

Description of the change

fixes an uninitalised variable in the dashview code

UNBLOCK

To post a comment you must log in.
Revision history for this message
Didier Roche-Tolomelli (didrocks) wrote :

initializing a variable to avoid a crash! sooo scary ;)

Thanks gord. Let's get than in

review: Approve
Revision history for this message
Allan LeSage (allanlesage) wrote :

The Jenkins job https://jenkins.qa.ubuntu.com/job/automerge-unity/645/console reported an error when processing this lp:~gordallott/unity/fix-uninitalised-view_variable branch.
Not merging it.

Revision history for this message
Unity Merger (unity-merger) wrote :

The Jenkins job https://jenkins.qa.ubuntu.com/job/automerge-unity/646/console reported an error when processing this lp:~gordallott/unity/fix-uninitalised-view_variable branch.
Not merging it.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugins/unityshell/src/DashController.cpp'
2--- plugins/unityshell/src/DashController.cpp 2012-04-12 11:04:07 +0000
3+++ plugins/unityshell/src/DashController.cpp 2012-04-12 14:57:20 +0000
4@@ -47,6 +47,7 @@
5 , timeline_id_(0)
6 , last_opacity_(0.0f)
7 , start_time_(0)
8+ , view_(nullptr)
9 {
10 SetupRelayoutCallbacks();
11 RegisterUBusInterests();