Switch to side-by-side view

--- a/src/rcldb/rcldb.cpp
+++ b/src/rcldb/rcldb.cpp
@@ -1370,19 +1370,21 @@
 	    // Up to date. 
 
 	    // Set the uptodate flag for doc / pseudo doc
-	    updated[*docid] = true;
-
-	    // Set the existence flag for all the subdocs (if any)
-	    vector<Xapian::docid> docids;
-	    if (!m_ndb->subDocs(udi, docids)) {
-		LOGERR(("Rcl::Db::needUpdate: can't get subdocs list\n"));
-		return true;
-	    }
-	    for (vector<Xapian::docid>::iterator it = docids.begin();
-		 it != docids.end(); it++) {
-		if (*it < updated.size()) {
-		    LOGDEB2(("Db::needUpdate: set flag for docid %d\n", *it));
-		    updated[*it] = true;
+	    if (m_mode 	!= DbRO) {
+		updated[*docid] = true;
+
+		// Set the existence flag for all the subdocs (if any)
+		vector<Xapian::docid> docids;
+		if (!m_ndb->subDocs(udi, docids)) {
+		    LOGERR(("Rcl::Db::needUpdate: can't get subdocs list\n"));
+		    return true;
+		}
+		for (vector<Xapian::docid>::iterator it = docids.begin();
+		     it != docids.end(); it++) {
+		    if (*it < updated.size()) {
+			LOGDEB2(("Db::needUpdate: set flag for docid %d\n", *it));
+			updated[*it] = true;
+		    }
 		}
 	    }
 	    return false;