This commit is contained in:
scc%mozilla.org 2001-06-29 16:14:19 +00:00
Родитель 6661806af9
Коммит cfaa8f0238
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -192,7 +192,7 @@ nsFtpProtocolHandler::RemoveConnection(nsIURI *aKey, nsISupports* *_retval) {
nsXPIDLCString spec;
aKey->GetPrePath(getter_Copies(spec));
nsCStringKey stringKey(spec);
nsCStringKey stringKey(spec.get());
// Do not have to addRef since there is only one connection (with this key)
// in this hash table at any time and that one has been addRef'ed
@ -217,7 +217,7 @@ nsFtpProtocolHandler::InsertConnection(nsIURI *aKey, nsISupports *aConn) {
nsXPIDLCString spec;
aKey->GetPrePath(getter_Copies(spec));
nsCStringKey stringKey(spec);
nsCStringKey stringKey(spec.get());
if (mRootConnectionList)
{