There was an uninitialised boolean variable which was set to true by default by compiler. Invalid default value generated an unwanted call of callNumberToActiveService() method just after the Dialer application had been registered to D-Bus. This caused a crash in the People application.
Signed-off-by: Jukka Selesniemi <[email protected]> --- src/peopleapp.cpp | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/peopleapp.cpp b/src/peopleapp.cpp index db05fbc..d6df030 100644 --- a/src/peopleapp.cpp +++ b/src/peopleapp.cpp @@ -67,6 +67,7 @@ PeopleApplication::PeopleApplication(int &argc, char**argv): m_currentPerson = NULL; m_editModel = NULL; m_editModelModified = NULL; + m_callPending = false; // m_AccountPath = NULL; -- 1.7.0.4 _______________________________________________ MeeGo-dev mailing list [email protected] http://lists.meego.com/listinfo/meego-dev http://wiki.meego.com/Mailing_list_guidelines
