fixing code that relied on implicit string construction

This commit is contained in:
scc%mozilla.org 2000-09-02 05:30:35 +00:00
Родитель 1e6c6f157d
Коммит 8bde0b933b
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -501,7 +501,7 @@ nsChromeRegistry::ConvertChromeURL(nsIURI* aChromeURL, char** aResult)
rv = GetBaseURL(package, provider, finalURL);
#ifdef DEBUG
if (NS_FAILED(rv)) {
nsCAutoString msg = "chrome: failed to get base url";
nsCAutoString msg("chrome: failed to get base url");
nsXPIDLCString url;
rv = aChromeURL->GetSpec(getter_Copies(url));
if (NS_SUCCEEDED(rv)) {

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

@ -2171,7 +2171,7 @@ wallet_GetPrefills(
if (FieldToValue(field, schema, value, itemList, index) == 0) {
if (value.IsEmpty() && nsnull != itemList) {
/* pick first of a set of synonymous values */
nsAutoString encryptedValue = ((wallet_Sublist *)itemList->ElementAt(0))->item;
nsAutoString encryptedValue( ((wallet_Sublist *)itemList->ElementAt(0))->item );
if (NS_FAILED(Wallet_Decrypt(encryptedValue, value))) {
NS_RELEASE(inputElement);
return -1;

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

@ -501,7 +501,7 @@ nsChromeRegistry::ConvertChromeURL(nsIURI* aChromeURL, char** aResult)
rv = GetBaseURL(package, provider, finalURL);
#ifdef DEBUG
if (NS_FAILED(rv)) {
nsCAutoString msg = "chrome: failed to get base url";
nsCAutoString msg("chrome: failed to get base url");
nsXPIDLCString url;
rv = aChromeURL->GetSpec(getter_Copies(url));
if (NS_SUCCEEDED(rv)) {