##// END OF EJS Templates
subrepo: compare normalised vfs path...
marmoute -
r48612:0bb4c97d stable draft
parent child Browse files
Show More
@@ -458,12 +458,14 b' class hgsubrepo(abstractsubrepo):'
458 458 create = allowcreate and not r.wvfs.exists(b'%s/.hg' % path)
459 459 # repository constructor does expand variables in path, which is
460 460 # unsafe since subrepo path might come from untrusted source.
461 if os.path.realpath(util.expandpath(root)) != root:
461 norm_root = os.path.normcase(root)
462 real_root = os.path.normcase(os.path.realpath(util.expandpath(root)))
463 if real_root != norm_root:
462 464 raise error.Abort(
463 465 _(b'subrepo path contains illegal component: %s') % path
464 466 )
465 467 self._repo = hg.repository(r.baseui, root, create=create)
466 if self._repo.root != root:
468 if os.path.normcase(self._repo.root) != os.path.normcase(root):
467 469 raise error.ProgrammingError(
468 470 b'failed to reject unsafe subrepo '
469 471 b'path: %s (expanded to %s)' % (root, self._repo.root)
General Comments 0
You need to be logged in to leave comments. Login now