Check path length on adding them to the cache and log error if a path is too long.

This commit is contained in:
Ottermandias 2022-08-15 13:15:26 +02:00
parent 09417bd6c1
commit 5b5a1e2fd8
5 changed files with 10 additions and 5 deletions

View file

@ -36,7 +36,7 @@ public readonly struct Utf8RelPath : IEquatable< Utf8RelPath >, IComparable< Utf
return true;
}
var substring = s!.Replace( '/', '\\' ).TrimStart('\\');
var substring = s.Replace( '/', '\\' ).TrimStart('\\');
if( substring.Length > MaxRelPathLength )
{
return false;