From fb1b0309b82b7361e94a6749c29c7dad7552379a 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. --- rdf/datasource/src/nsLocalStore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdf/datasource/src/nsLocalStore.cpp b/rdf/datasource/src/nsLocalStore.cpp index 46c45284204..c8096cb81c1 100644 --- a/rdf/datasource/src/nsLocalStore.cpp +++ b/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