Adjusting stream buffer size to 64KB

64K is optimal buffer size per https://technet.microsoft.com/en-us/library/cc938632.aspx
This commit is contained in:
J Wyman 2015-05-07 08:50:12 -07:00
parent d969d41547
commit 7eb7e03db8

View File

@ -875,7 +875,7 @@ void stream_list_free(git_vector *streams)
git_vector_free(streams);
}
#define STREAM_BUFSIZE 10240
#define STREAM_BUFSIZE 65536
int git_filter_list_stream_file(
git_filter_list *filters,