Skip to content

Commit e985864

Browse files
authored
Merge pull request libgit2#5661 from lhchavez/windows-leak-detection-deflake
Make the Windows leak detection more robust
2 parents c964f73 + 4a0dcee commit e985864

File tree

3 files changed

+102
-94
lines changed

3 files changed

+102
-94
lines changed

src/win32/w32_crtdbg_stacktrace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ static CRITICAL_SECTION g_crtdbg_stacktrace_cs;
5757
* it and try again.
5858
*/
5959

60-
#define MY_ROW_LIMIT (1024 * 1024)
60+
#define MY_ROW_LIMIT (2 * 1024 * 1024)
6161
static git_win32__crtdbg_stacktrace__row g_cs_rows[MY_ROW_LIMIT];
6262
static git_win32__crtdbg_stacktrace__row *g_cs_index[MY_ROW_LIMIT];
6363

0 commit comments

Comments
 (0)