[NFC][Sanitizer][Windows] Fix refactoring oversight
authorJulian Lettner <jlettner@apple.com>
Fri, 1 Mar 2019 22:26:45 +0000 (22:26 +0000)
committerJulian Lettner <jlettner@apple.com>
Fri, 1 Mar 2019 22:26:45 +0000 (22:26 +0000)
Fix mistake in previous commit: 9fe3b4906f351292691cd594b30fe6cf7230b94d

llvm-svn: 355234

compiler-rt/lib/asan/asan_stack.cc

index 039261c..72caf1f 100644 (file)
@@ -32,7 +32,7 @@ void __sanitizer::BufferedStackTrace::UnwindImpl(
     uptr pc, uptr bp, void *context, bool request_fast, u32 max_depth) {
   using namespace __asan;
 #if SANITIZER_WINDOWS
-  stack->Unwind(max_depth, pc, 0, context, 0, 0, false);
+  Unwind(max_depth, pc, 0, context, 0, 0, false);
 #else
   AsanThread *t;
   size = 0;