fix uninitialized variable. #59673. sr=alecf

This commit is contained in:
sspitzer%netscape.com 2000-11-11 14:58:52 +00:00
Родитель 4157ff15d5
Коммит 0c23e63e43
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -103,7 +103,7 @@ NS_IMETHODIMP nsMsgDBModule::GetClassObject(nsIComponentManager *aCompMgr,
const nsIID& aIID,
void** r_classObj)
{
nsresult rv;
nsresult rv = NS_OK;
// Defensive programming: Initialize *r_classObj in case of error below
if (!r_classObj)