Submitter | phabricator |
---|---|
Date | Sept. 7, 2019, 5:08 p.m. |
Message ID | <549720ee076b9defbdf317eafa279bf9@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/41556/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/revlog.py b/mercurial/revlog.py --- a/mercurial/revlog.py +++ b/mercurial/revlog.py @@ -1649,7 +1649,11 @@ # no extra flags set, no flag processor runs, text = rawtext return rawtext - text, validatehash = self._processflags(rawtext, flags, 'read', raw=raw) + if raw: + validatehash = self._processflagsraw(rawtext, flags) + text = rawtext + else: + text, validatehash = self._processflagsread(rawtext, flags) if validatehash: self.checkhash(text, node, rev=rev) if not validated: