chore: Add a doc comment

This commit is contained in:
AverageHelper 2024-12-08 17:48:56 -07:00
parent 59360be522
commit aa764a75f0
No known key found for this signature in database
GPG Key ID: F2D4E0462A058DCB
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ impl PathBufWrap {
return Err(UriSegmentError::BadChar('/'));
}
// disallow invalid or suspicious path segments
for segment in path.split('/') {
if segment == ".." {
segment_count -= 1;