| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 6772aa6 commit ff6070e
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,7 +36,7 @@ | |||
| 36 | 36 | ||
| 37 | 37 | # Reset this number to 0 on major V8 upgrades. | |
| 38 | 38 | # Increment by one for each non-official patch applied to deps/v8. | |
| 39 | - 'v8_embedder_string': '-node.12', | ||
| 39 | + 'v8_embedder_string': '-node.13', | ||
| 40 | 40 | ||
| 41 | 41 | ##### V8 defaults for Node.js ##### | |
| 42 | 42 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -654,9 +654,9 @@ class V8_BASE_EXPORT Stack { | |||
| 654 | 654 | constexpr size_t kAsanRealFrameOffsetBytes = 32; | |
| 655 | 655 | void* real_frame = __asan_addr_is_in_fake_stack( | |
| 656 | 656 | __asan_get_current_fake_stack(), slot, nullptr, nullptr); | |
| 657 | - return real_frame | ||
| 658 | - ? (static_cast<char*>(real_frame) + kAsanRealFrameOffsetBytes) | ||
| 659 | - : slot; | ||
| 657 | + return real_frame ? StackSlot(static_cast<char*>(real_frame) + | ||
| 658 | + kAsanRealFrameOffsetBytes) | ||
| 659 | + : slot; | ||
| 660 | 660 | #endif // V8_USE_ADDRESS_SANITIZER | |
| 661 | 661 | return slot; | |
| 662 | 662 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments