Closed
Bug 419891
Opened 18 years ago
Closed 18 years ago
Firefox crashes in [@ nsStandardURL::SetFileExtension]
Categories
(Firefox :: Bookmarks & History, defect, P2)
Firefox
Bookmarks & History
Tracking
()
VERIFIED
FIXED
Firefox 3 beta5
People
(Reporter: whimboo, Assigned: mayhemer)
References
Details
(Keywords: crash)
Crash Data
Attachments
(2 files)
|
2.67 KB,
text/plain
|
Details | |
|
1.19 KB,
patch
|
benjamin
:
review+
|
Details | Diff | Splinter Review |
Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9b4pre) Gecko/2008022704 Minefield/3.0b4pre ID:2008022704
I started Firefox after an update with the latest session and after closing some tabs Firefox crashes. I'm not able to reproduce this issue at the moment.
Breakpad id: bp-164481bd-e560-11dc-9d1c-001a4bd46e84
0 nsStandardURL::SetFileExtension(nsACString_internal const&) mozilla/netwerk/base/src/nsStandardURL.cpp:2353
1 nsNavHistoryResult::OnItemVisited(long long, long long, long long) mozilla/toolkit/components/places/src/nsNavHistoryResult.cpp:4088
2 nsNavBookmarks::OnVisit(nsIURI*, long long, long long, long long, long long, unsigned int, unsigned int*) mozilla/toolkit/components/places/src/nsNavBookmarks.cpp:2625
3 nsNavHistory::AddVisit(nsIURI*, long long, nsIURI*, int, int, long long, long long*) mozilla/toolkit/components/places/src/nsNavHistory.cpp:2546
4 nsNavHistory::AddVisitChain(nsIURI*, long long, int, int, nsIURI*, long long*, long long*, long long*) mozilla/toolkit/components/places/src/nsNavHistory.cpp:4145
http://bonsai.mozilla.org/cvsblame.cgi?file=mozilla/netwerk/base/src/nsStandardURL.cpp&rev=1.109&mark=2353#2353
Seems that input is null?
Flags: blocking1.9?
Comment 1•18 years ago
|
||
hrm - why is that stack frame not complete?
Comment 2•18 years ago
|
||
I hit a similar-looking crash [@ nsNavBookmarks::OnVisit] while I was opening a bunch of tabs (including Gmail). I was using a Mac trunk debug build from around 1am.
Updated•18 years ago
|
Flags: tracking1.9? → blocking1.9?
Comment 3•18 years ago
|
||
Is this being caused by Places or Session Restore?
Flags: blocking1.9? → blocking1.9+
Priority: -- → P2
| Assignee | ||
Comment 4•18 years ago
|
||
My theory is that 'void *ref' in nsMaybeWeakPtr_base::GetValueAs is not initialized to NULL.
When a null pointer is added to the array of observers (nsMaybeWeakPtrArray<nsINavBookmarkObserver> mObservers) then ENUMERATE_WEAKARRAY -> nsMaybeWeakPtrArray::ElementAt -> nsMaybeWeakPtr::GetValue returns some random mess because nsMaybeWeakPtr::mPtr is then NULL.
This patch fixes that concrete issue that should be fixed anyway even if it is not cause of this bug.
I cannot reproduce this bug on my Mac/Win. Is there anyone who can?
| Assignee | ||
Comment 5•18 years ago
|
||
And one more question: are the observers, mainly added as weak ref, accessed/referenced on several threads?
Comment 6•18 years ago
|
||
The observers in places should only be accessed on the main thread.
| Reporter | ||
Comment 7•18 years ago
|
||
(In reply to comment #4)
> I cannot reproduce this bug on my Mac/Win. Is there anyone who can?
Sorry, it was a one-time crash. Haven't seen it again until now. So no clean STR are available.
Updated•18 years ago
|
Attachment #308648 -
Flags: review?(benjamin) → review+
Updated•18 years ago
|
Component: Networking → Places
Flags: blocking1.9+
Product: Core → Firefox
QA Contact: networking → places
Updated•18 years ago
|
Flags: blocking-firefox3?
Updated•18 years ago
|
Flags: blocking-firefox3? → blocking-firefox3+
Updated•18 years ago
|
Keywords: checkin-needed
Comment 8•18 years ago
|
||
Checking in toolkit/components/places/src/nsMaybeWeakPtr.cpp;
/cvsroot/mozilla/toolkit/components/places/src/nsMaybeWeakPtr.cpp,v <-- nsMaybeWeakPtr.cpp
new revision: 1.3; previous revision: 1.2
done
Status: ASSIGNED → RESOLVED
Closed: 18 years ago
Keywords: checkin-needed
Resolution: --- → FIXED
Target Milestone: --- → Firefox 3 beta5
Comment 9•18 years ago
|
||
seeing one crash report with this signature on 3/17
http://crash-stats.mozilla.com/report/index/3dbe7168-f65d-11dc-ad24-001a4bd46e84
| Reporter | ||
Comment 10•18 years ago
|
||
(In reply to comment #9)
> seeing one crash report with this signature on 3/17
> http://crash-stats.mozilla.com/report/index/3dbe7168-f65d-11dc-ad24-001a4bd46e84
The build id is a bit old: 2008030317
Due to I don't have a valid testcase I cannot verify it. Let's wait for a while if someone runs into this crash.
OS: Mac OS X → All
Hardware: PC → All
Comment 11•18 years ago
|
||
yes, but the fix went in prior to 3/17 (on 3/12) Waiting for a longer bake is no problem before actually marking it verified is no problem.
| Assignee | ||
Comment 12•18 years ago
|
||
(In reply to comment #11)
> yes, but the fix went in prior to 3/17 (on 3/12) Waiting for a longer bake is
> no problem before actually marking it verified is no problem.
>
Just to clarify: build ID you reported is 2008030317, this is 2008-03-03-17 (where 17 is probably the build order number during 3.3.2008 date). Also, the patch is not present in beta 4 as seen from CVS graph and target milestone.
Comment 14•18 years ago
|
||
ah, sorry about that.
Comment 16•16 years ago
|
||
Bug 451915 - move Firefox/Places bugs to Firefox/Bookmarks and History. Remove all bugspam from this move by filtering for the string "places-to-b-and-h".
In Thunderbird 3.0b, you do that as follows:
Tools | Message Filters
Make sure the correct account is selected. Click "New"
Conditions: Body contains places-to-b-and-h
Change the action to "Delete Message".
Select "Manually Run" from the dropdown at the top.
Click OK.
Select the filter in the list, make sure "Inbox" is selected at the bottom, and click "Run Now". This should delete all the bugspam. You can then delete the filter.
Gerv
Component: Places → Bookmarks & History
QA Contact: places → bookmarks
Updated•15 years ago
|
Crash Signature: [@ nsStandardURL::SetFileExtension]
You need to log in
before you can comment on or make changes to this bug.
Description
•