Bug 1038465: Pass suggested filename to application reputation query (r=paolo)

This commit is contained in:
Monica Chew
2014-07-15 13:46:52 -07:00
parent f28bafe7be
commit b36b5fe418
3 changed files with 6 additions and 0 deletions

View File

@@ -361,8 +361,11 @@ PendingLookup::IsBinaryFile()
nsString fileName;
nsresult rv = mQuery->GetSuggestedFileName(fileName);
if (NS_FAILED(rv)) {
LOG(("No suggested filename [this = %p]", this));
return false;
}
LOG(("Suggested filename: %s [this = %p]",
NS_ConvertUTF16toUTF8(fileName).get(), this));
return
// Executable extensions for MS Windows, from
// https://code.google.com/p/chromium/codesearch#chromium/src/chrome/common/safe_browsing/download_protection_util.cc&l=14