mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
mailnews: follow-up rev c9d96163, fix build
This commit is contained in:
parent
e361ce2b32
commit
6beccbf6ce
2 changed files with 5 additions and 4 deletions
|
|
@ -510,13 +510,13 @@ void Tokenizer::tokenizeHeaders(nsIUTF8StringEnumerator * aHeaderNames, nsIUTF8S
|
|||
|
||||
// extract the charset parameter
|
||||
nsCString parameterValue;
|
||||
mimehdrpar->GetParameterInternal(headerValue.get(), "charset", nullptr, nullptr, getter_Copies(parameterValue));
|
||||
mimehdrpar->GetParameterInternal(headerValue, "charset", nullptr, nullptr, getter_Copies(parameterValue));
|
||||
addTokenForHeader("charset", parameterValue);
|
||||
|
||||
// create a token containing just the content type
|
||||
mimehdrpar->GetParameterInternal(headerValue.get(), "type", nullptr, nullptr, getter_Copies(parameterValue));
|
||||
mimehdrpar->GetParameterInternal(headerValue, "type", nullptr, nullptr, getter_Copies(parameterValue));
|
||||
if (!parameterValue.Length())
|
||||
mimehdrpar->GetParameterInternal(headerValue.get(), nullptr /* use first unnamed param */, nullptr, nullptr, getter_Copies(parameterValue));
|
||||
mimehdrpar->GetParameterInternal(headerValue, nullptr /* use first unnamed param */, nullptr, nullptr, getter_Copies(parameterValue));
|
||||
addTokenForHeader("content-type/type", parameterValue);
|
||||
|
||||
// XXX: should we add a token for the entire content-type header as well or just these parts we have extracted?
|
||||
|
|
|
|||
|
|
@ -494,7 +494,8 @@ MimeHeaders_get_parameter (const char *header_value, const char *parm_name,
|
|||
return nullptr;
|
||||
|
||||
nsCString result;
|
||||
rv = mimehdrpar->GetParameterInternal(header_value, parm_name, charset,
|
||||
nsCString headerValue(header_value);
|
||||
rv = mimehdrpar->GetParameterInternal(headerValue, parm_name, charset,
|
||||
language, getter_Copies(result));
|
||||
return NS_SUCCEEDED(rv) ? PL_strdup(result.get()) : nullptr;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue