More bustage fix for Bug 380250 - passing pointer instead of just the variable

This commit is contained in:
sdwilsh@shawnwilsher.com 2007-05-21 17:59:50 -07:00
parent ec40c9a694
commit b73c31cf8b

View File

@ -1422,7 +1422,7 @@ nsDownload::OnStateChange(nsIWebProgress* aWebProgress,
NS_ENSURE_SUCCESS(rv, rv);
nsAutoString path;
rv = file->GetPath(&path);
rv = file->GetPath(path);
NS_ENSURE_SUCCESS(rv, rv);
PRUnichar *filePath = ToNewUnicode(path);