diff options
| author | Dan Engelbrecht <[email protected]> | 2026-04-13 19:17:09 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-04-13 19:17:09 +0200 |
| commit | 3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7 (patch) | |
| tree | 8d24babc8cd3d097800af0bd960c7ba1d72927d7 /src/zencompute/pathvalidation.h | |
| parent | use mimalloc by default (#952) (diff) | |
| download | zen-3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7.tar.xz zen-3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7.zip | |
fix utf characters in source code (#953)
Diffstat (limited to 'src/zencompute/pathvalidation.h')
| -rw-r--r-- | src/zencompute/pathvalidation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zencompute/pathvalidation.h b/src/zencompute/pathvalidation.h index c2e30183a..d50ad4a2a 100644 --- a/src/zencompute/pathvalidation.h +++ b/src/zencompute/pathvalidation.h @@ -78,7 +78,7 @@ ValidateSandboxRelativePath(std::string_view Name) throw zen::invalid_argument("path traversal detected: '{}' contains '..' component", Name); } - // Skip "." (current directory) — harmless in relative paths + // Skip "." (current directory) - harmless in relative paths if (ComponentStr != ".") { ValidatePathComponent(ComponentStr, Name); |