зеркало из https://github.com/mozilla/gecko-dev.git
fix leak of profile dir in addr book session
This commit is contained in:
Родитель
9cc6546fbb
Коммит
1c93201a4c
|
@ -112,8 +112,8 @@ NS_IMETHODIMP nsAddrBookSession::GetUserProfileDirectory(nsFileSpec * *userDir)
|
|||
if (NS_FAILED(rv))
|
||||
return rv;
|
||||
|
||||
nsIFileSpec* profiledir;
|
||||
rv = locator->GetFileLocation(nsSpecialFileSpec::App_UserProfileDirectory50, &profiledir);
|
||||
nsCOMPtr <nsIFileSpec> profiledir;
|
||||
rv = locator->GetFileLocation(nsSpecialFileSpec::App_UserProfileDirectory50, getter_AddRefs(profiledir));
|
||||
if (NS_FAILED(rv))
|
||||
return rv;
|
||||
profiledir->GetFileSpec(mpUserDirectory);
|
||||
|
|
Загрузка…
Ссылка в новой задаче