Implement stub routine for _com_issue_error to avoid dependency upon comsupp.dll. Fixing free MSVC bustage.

Bug #241528 r=bsmedberg sr=bryner
This commit is contained in:
cls%seawood.org 2005-11-07 21:47:45 +00:00
parent 5b121a0251
commit ac21a3afe4

View File

@ -98,6 +98,14 @@ const int sInitialCookieBufferSize = 1024; // but it can grow
const int sUsernameLengthLimit = 80;
const int sHostnameLengthLimit = 255;
//***********************************************************************
//*** Replacements for comsupp.lib calls used by pstorec.dll
//***********************************************************************
void __stdcall _com_issue_error(HRESULT hr)
{
// XXX - Do nothing for now
}
//***********************************************************************
//*** windows registry to mozilla prefs data type translation functions
//***********************************************************************
@ -559,7 +567,7 @@ nsIEProfileMigrator::CopyHistory(PRBool aReplace)
if (SUCCEEDED(hr)) {
STATURL statURL;
ULONG fetched;
_bstr_t url, title;
_bstr_t url;
nsCAutoString scheme;
SYSTEMTIME st;
PRBool validScheme = PR_FALSE;