Re-fixing bug 7022 (Install.buildID). "2001040506" needs to be a double,

doesn't fit in a javascript int.


git-svn-id: svn://10.0.0.236/trunk@92556 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dveditz%netscape.com
2001-04-17 13:13:24 +00:00
parent 152683d8fc
commit f4e8a362b7
3 changed files with 11 additions and 16 deletions

View File

@@ -433,7 +433,7 @@ nsSoftwareUpdate::StartupTasks( PRBool *needAutoreg )
// Also check for build number changes
nsresult rv;
PRInt32 buildID = 0;
PRInt32 buildID = -1;
nsRegistryKey idKey = 0;
nsCOMPtr<nsIRegistry> reg = do_GetService(knsRegistryCID,&rv);
if (NS_SUCCEEDED(rv))