From be3e3ef47b4dbf824b0220ffa0f790adac3456c1 Mon Sep 17 00:00:00 2001 From: "waterson%netscape.com" Date: Tue, 11 Jan 2000 05:12:36 +0000 Subject: [PATCH] Nitpicky cleanup. --- xpfe/components/history/src/nsGlobalHistory.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/xpfe/components/history/src/nsGlobalHistory.cpp b/xpfe/components/history/src/nsGlobalHistory.cpp index 5d4b84783a9a..d02f207af024 100644 --- a/xpfe/components/history/src/nsGlobalHistory.cpp +++ b/xpfe/components/history/src/nsGlobalHistory.cpp @@ -1375,8 +1375,6 @@ nsGlobalHistory::ArcLabelsIn(nsIRDFNode* aNode, nsCOMPtr resource = do_QueryInterface(aNode); if (resource && IsURLInHistory(resource)) { - // If it's a resource, be optimistic and assume that it's actually - // in the history. return NS_NewSingletonEnumerator(aLabels, kNC_child); } else { @@ -1388,6 +1386,10 @@ NS_IMETHODIMP nsGlobalHistory::ArcLabelsOut(nsIRDFResource* aSource, nsISimpleEnumerator** aLabels) { + NS_PRECONDITION(aSource != nsnull, "null ptr"); + if (! aSource) + return NS_ERROR_NULL_POINTER; + nsresult rv; if ((aSource == kNC_HistoryRoot) || @@ -1396,8 +1398,8 @@ nsGlobalHistory::ArcLabelsOut(nsIRDFResource* aSource, return NS_NewSingletonEnumerator(aLabels, kNC_child); } else if (IsURLInHistory(aSource)) { - // We'll be optimistic and _assume_ that this is in the history, - // in which case it'll have all the history attributes. + // If the URL is in the history, then it'll have all the + // appropriate attributes. nsCOMPtr array; rv = NS_NewISupportsArray(getter_AddRefs(array)); if (NS_FAILED(rv)) return rv;