Summary: | Choqok crashes on Friends list update | ||
---|---|---|---|
Product: | [Applications] choqok | Reporter: | smo <smoooms> |
Component: | general | Assignee: | Mehrdad Momeny <mehrdad.momeny> |
Status: | RESOLVED FIXED | ||
Severity: | crash | CC: | kde, mdkcore |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
smo
2010-05-31 18:56:46 UTC
reproduce, i will try to look this bug can i commit this ? Index: /home/niconico/SVN/choqok/helperlibs/twitterapihelper/twitterapimicroblog.cpp =================================================================== --- /home/niconico/SVN/choqok/helperlibs/twitterapihelper/twitterapimicroblog.cpp (révision 1133230) +++ /home/niconico/SVN/choqok/helperlibs/twitterapihelper/twitterapimicroblog.cpp (copie de travail) @@ -623,7 +623,9 @@ void TwitterApiMicroBlog::listFriendsUsername(TwitterApiAccount* theAccount) { d->friendsList.clear(); - requestFriendsScreenName(theAccount); + if ( theAccount ) { + requestFriendsScreenName(theAccount); + } } void TwitterApiMicroBlog::requestFriendsScreenName(TwitterApiAccount* theAccount, int page) It seems ok for me SVN commit 1133279 by nlecureuil: Fix crash on Friends list update CCBUG: 240256 M +2 -0 twitterapimicroblog.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=1133279 |