From d49dc12444be270cce05e60660964a0559e8adaf Mon Sep 17 00:00:00 2001 From: "waterson%netscape.com" Date: Fri, 3 Sep 1999 18:31:30 +0000 Subject: [PATCH] Always return NS_OK from Refresh(), because if we couldn't load the file, we still need to be able to put crap into the local store. git-svn-id: svn://10.0.0.236/trunk@45909 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/rdf/datasource/src/nsLocalStore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/rdf/datasource/src/nsLocalStore.cpp b/mozilla/rdf/datasource/src/nsLocalStore.cpp index 46c45284204..c8096cb81c1 100644 --- a/mozilla/rdf/datasource/src/nsLocalStore.cpp +++ b/mozilla/rdf/datasource/src/nsLocalStore.cpp @@ -303,7 +303,7 @@ LocalStoreImpl::Refresh(PRBool sync) { rv = remote->Refresh(sync); } - return(rv); + return NS_OK; // XXX Always return OK, even if we couldn't load the file. } nsresult