From ede793a1af97f596614e1817978d1f606d6e92c1 Mon Sep 17 00:00:00 2001 From: John Stiles Date: Thu, 15 Oct 2020 13:27:12 -0400 Subject: [PATCH] Increase stack trace depth from 64 to 128. 64 stack frames is not deep enough when destroying an SkSL program: http://screen/4RFxPFj7TFXRcTF Change-Id: I53b151a640a982af7864a17ef0381e231e3fb872 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/327338 Auto-Submit: John Stiles Reviewed-by: Mike Klein Commit-Queue: John Stiles --- dm/DM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dm/DM.cpp b/dm/DM.cpp index a00618b421..3de6d5fe94 100644 --- a/dm/DM.cpp +++ b/dm/DM.cpp @@ -355,7 +355,7 @@ static void find_culprit() { find_culprit(); #if !defined(SK_BUILD_FOR_ANDROID) - void* stack[64]; + void* stack[128]; int count = backtrace(stack, SK_ARRAY_COUNT(stack)); char** symbols = backtrace_symbols(stack, count); info("\nStack trace:\n");