We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca84ca1 commit b926212Copy full SHA for b926212
1 file changed
src/Plugins/Watchers/FSWatcher.cs
@@ -86,6 +86,7 @@ private bool IsFileSymlink(string path)
86
private void LoadWatcherSymlink(string path)
87
{
88
StringBuilder str = StringPool.Take();
89
+ str.Capacity = 4096;
90
try
91
92
int count = Syscall.readlink(path, str);
@@ -124,7 +125,6 @@ private void LoadWatcherSymlink(string path)
124
125
126
StringPool.Return(str);
127
}
-
128
129
130
/// <summary>
0 commit comments