Bug 231716 10 new 'Blamed Build Warnings' from 'Linux brad Clobber (info) on 01/20 22:42', (in files: mozLineTerm.cpp)

patch by gautheri@noos.fr r=timeless sr=roc


git-svn-id: svn://10.0.0.236/trunk@164494 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mozdev.org
2004-10-27 05:26:56 +00:00
parent 05b0e08551
commit f0287c71cb

View File

@@ -214,8 +214,6 @@ NS_IMETHODIMP mozLineTerm::GetSecurePrincipal(nsIDOMDocument *domDoc,
{
XMLT_LOG(mozLineTerm::GetSecurePrincipal,30,("\n"));
nsresult result;
if (!aPrincipalStr)
return NS_ERROR_FAILURE;
@@ -230,9 +228,8 @@ NS_IMETHODIMP mozLineTerm::GetSecurePrincipal(nsIDOMDocument *domDoc,
if (!principal)
return NS_ERROR_FAILURE;
#if 0 // Temporarily comented out, because ToString is not immplemented
result = principal->ToString(aPrincipalStr);
if (NS_FAILED(result) || !*aPrincipalStr)
#if 0 // Temporarily commented out, because |ToString()| is not implemented.
if (NS_FAILED(principal->ToString(aPrincipalStr)) || !*aPrincipalStr)
return NS_ERROR_FAILURE;
#else
const char temStr[] = "unknown";