Make content-disposition parsing more forgiving. Fixes bug 121509 and a

few existing evang bugs.  r=law, sr=mscott
This commit is contained in:
bzbarsky%mit.edu 2002-01-24 05:14:49 +00:00
Родитель 68558db0ea
Коммит cc6df92d27
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -782,7 +782,7 @@ void nsExternalAppHandler::ExtractSuggestedFileNameFromChannel(nsIChannel* aChan
nsCAutoString dispositionValue;
dispositionValue = disp;
PRInt32 pos = dispositionValue.Find("filename=", PR_TRUE);
if (pos > 0)
if (pos != kNotFound)
{
// extract everything after the filename= part and treat that as the file name...
nsCAutoString dispFileName;

Просмотреть файл

@ -311,7 +311,7 @@ nsHeaderSniffer.prototype = {
if (name) {
const filenamePrefix = "filename=";
var ix = name.indexOf(filenamePrefix);
if (ix > 0) {
if (ix >= 0) {
// Adjust ix to point to start of actual name
ix += filenamePrefix.length;
filename = name.substr(ix, name.length);
@ -319,7 +319,8 @@ nsHeaderSniffer.prototype = {
ix = filename.lastIndexOf(";");
if (ix > 0)
filename = filename.substr(0, ix);
// XXX strip out quotes;
filename = filename.replace(/^"|"$/g, "");
}
}
}