Closed
Bug 274339
Opened 20 years ago
Closed 20 years ago
[FIX]###!!! ASSERTION: Give me something to work with: '!aMIMEType.IsEmpty() || !aFileExt.IsEmpty()', file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2527
Categories
(Core Graveyard :: File Handling, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.8beta1
People
(Reporter: Biesinger, Assigned: bzbarsky)
References
()
Details
(Keywords: assertion)
Attachments
(2 files)
|
3.82 KB,
text/plain
|
Details | |
|
2.05 KB,
patch
|
Biesinger
:
review+
neil
:
superreview+
|
Details | Diff | Splinter Review |
loading invalid js uri gives assertions from exthandler steps to reproduce: 1. load http://www.mozilla.org (probably not necessary) 2. load javascript:void(document.body.style.MozColumnWidth='200 actual results: spec=/index WARNING: malformed url: no scheme, file /home/chb/mozilla/netwerk/base/src/nsStandardURL.cpp, line 700 ###!!! ASSERTION: Give me something to work with: '!aMIMEType.IsEmpty() || !aFileExt.IsEmpty()', file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2527 Break: at file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2527 ###!!! ASSERTION: Empty aExtension parameter!: '!aExtension.IsEmpty()', file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2829 Break: at file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2829 LoadPlugin() /home/chb/builds/debug-trunk/modules/plugin/samples/unixprinting/libunixprintplugin.so returned 8736738 GetMIMEDescription() returned "application/x-print-unix-nsplugin:.pnt:Demo Print Plugin for Unix/Linux" LoadPlugin() /home/chb/builds/debug-trunk/modules/plugin/samples/default/unix/libnullplugin.so returned 8756fc0 GetMIMEDescription() returned "*:.*:All types" ###!!! ASSERTION: Give me something to work with: '!aMIMEType.IsEmpty() || !aFileExt.IsEmpty()', file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2527 Break: at file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2527 ###!!! ASSERTION: Empty aExtension parameter!: '!aExtension.IsEmpty()', file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2829 Break: at file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2829 I can't say for sure whether that spec=/index line happened after loading that js url or before...
| Reporter | ||
Comment 1•20 years ago
|
||
> 2. load javascript:void(document.body.style.MozColumnWidth='200
actually it looks like you have to paste that url in the urlbar and hit
shift+enter, to hit the assertion| Reporter | ||
Comment 2•20 years ago
|
||
this function is called directly from JS, via this stack.
top of stack:
0 [native frame]
1 getMIMEInfoForType(aMIMEType = null, aExtension = "")
["chrome://communicator/content/contentAreaUtils.js":688]
this = [object ChromeWindow @ 0x81d2700]
2 getDefaultExtension(aFilename = "index", aURI = [xpconnect wrapped nsIURI @
0x882b6e8], aContentType = null)
["chrome://communicator/content/contentAreaUtils.js":816]| Reporter | ||
Comment 3•20 years ago
|
||
OK... so getDefaultExtension tries to ask the mimeservice for a mimeinfo, for checking whether the url extension is a valid extension for the given type/ext combination... just in this case, the URL has no extension, and a content type was not given. hm... this code access url.fileExtension at line 811 (in my tree at least), before the mime service call. later on, it accesses fileExtension _again_, in a try-catch block, with the comment "Now try the extension from the URI"... http://lxr.mozilla.org/seamonkey/source/xpfe/communicator/resources/content/contentAreaUtils.js#800 see #800 and #815 this code needs to do better when it has neither an extension nor a type. for example, it could check for that case and return "" or something.
| Reporter | ||
Comment 4•20 years ago
|
||
-> default owner... don't think I'll fix this anytime soon
Assignee: cbiesinger → file-handling
Keywords: helpwanted
| Assignee | ||
Comment 5•20 years ago
|
||
> later on, it accesses fileExtension _again_, in a try-catch block, with the
> comment "Now try the extension from the URI"...
But it assigns a different object to "url" in between...
Anyway, this patch fixes both seamonkey and browser to not violate the api
here.Assignee: file-handling → bzbarsky
Status: NEW → ASSIGNED
Attachment #171469 -
Flags: superreview?(neil.parkwaycc.co.uk)
Attachment #171469 -
Flags: review?(cbiesinger)
| Assignee | ||
Updated•20 years ago
|
Keywords: helpwanted
Priority: -- → P3
Summary: ###!!! ASSERTION: Give me something to work with: '!aMIMEType.IsEmpty() || !aFileExt.IsEmpty()', file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2527 → [FIX]###!!! ASSERTION: Give me something to work with: '!aMIMEType.IsEmpty() || !aFileExt.IsEmpty()', file /home/chb/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp, line 2527
Target Milestone: --- → mozilla1.8beta
Updated•20 years ago
|
Attachment #171469 -
Flags: superreview?(neil.parkwaycc.co.uk) → superreview+
| Reporter | ||
Comment 6•20 years ago
|
||
Comment on attachment 171469 [details] [diff] [review] Patch > But it assigns a different object to "url" in between... oh, oops, missed that
Attachment #171469 -
Flags: review?(cbiesinger) → review+
| Assignee | ||
Comment 7•20 years ago
|
||
mike, could you give this a 2-sec OK? This is just putting this code in line with the API comments for the api it's calling....
Comment 8•20 years ago
|
||
Comment on attachment 171469 [details] [diff] [review] Patch r=me for the toolkit bits
| Assignee | ||
Comment 9•20 years ago
|
||
Fixed.
Status: ASSIGNED → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
Updated•8 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•