status
stringclasses 1
value | repo_name
stringlengths 9
24
| repo_url
stringlengths 28
43
| issue_id
int64 1
104k
| updated_files
stringlengths 8
1.76k
| title
stringlengths 4
369
| body
stringlengths 0
254k
⌀ | issue_url
stringlengths 37
56
| pull_url
stringlengths 37
54
| before_fix_sha
stringlengths 40
40
| after_fix_sha
stringlengths 40
40
| report_datetime
timestamp[ns, tz=UTC] | language
stringclasses 5
values | commit_datetime
timestamp[us, tz=UTC] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,674 |
["shell/browser/native_window_mac.mm"]
|
close event not fired on macOS if the window is opened as a modal
|
* Electron version: 1.6.10
* Operating system: macOS Sierra 10.12.6
### Expected behavior
The `close` event should be fired when the modal window is closed on Mac. It is fired on Windows.
### Actual behavior
The `close` event is not fired.
### How to reproduce
I have created a repro at this [repository](https://github.com/rongduan-zhu/electron-quick-start).
Just run `main.js` using electron.
The code essentially creates another modal window with the parent set to the main browser window. Created a `setTimeout` which closes the modal window after 3 seconds.
The modal window also listens to the `close` event and logs a message when the event is fired.
On Mac, the event listener callback is never called (nothing shows up in terminal). On Windows, the event listener callback is called (message shows up in terminal).
|
https://github.com/electron/electron/issues/10674
|
https://github.com/electron/electron/pull/19014
|
f62d9f1411c756f3647d5d8b1bf9efeab23dc29e
|
cc223d7cd270f6b0a401985d2467c5b815b6f68d
| 2017-10-02T21:35:47Z |
c++
| 2019-07-01T02:57:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,668 |
["shell/browser/api/atom_api_web_contents.cc"]
|
Honor the OS's cursor blink settings
|
* Electron version: Various, as tested by apps mentioned below
* Operating system: Windows, macOS, Linux
### Expected behavior
<!-- What do you think should happen? -->
Electron should honor OS-level cursor blink settings.
Using Windows and Firefox as an example, here is what should be happening (thanks @jonathansampson for the gif):
<img src="https://cloud.githubusercontent.com/assets/815158/24823693/131bb71c-1bc7-11e7-8dd4-b969b1c86bbe.gif">
### Actual behavior
<!-- What actually happens? -->
The cursor still blinks. The choices made by the user in his/her OS are ignored.
Aside from the OS’s settings not being honored, note that this is an accessibility issue for some ([example 1](https://discussions.apple.com/thread/7689487), [example 2](https://github.com/brave/browser-laptop/issues/8123)), and an irritation or frustration for many others. A google search for `turn off blinking cursor` produces [387,000 results](https://www.google.com/search?q=turn+off+blinking+cursor).
I tried various apps built using Electron ([Tusk](https://champloohq.github.io/tusk/), [Wavebox](https://wavebox.io/), [Wire](https://wire.com/en/), [Boostnote](https://boostnote.io/), [Brave](https://brave.com/), and [Min](https://minbrowser.github.io/min/)). In every app and on any OS, the result was the same: the cursor blinked, though I have the OS settings for cursor blinking turned off.
### How to reproduce
1. Change your respective OS’s setting for cursor blink to off.
#### On Windows:
- Set `HKEY_CURRENT_USER\Control Panel\Desktop\CursorBlinkRate` in the registry to `-1`.
- OR (this will set the above value) navigate to Control Panel -> Keyboard, and under “Cursor blink rate,” move the slider all the way to the left.
#### On macOS:
Set values in the terminal approximating the following:
```
defaults write -g NSTextInsertionPointBlinkPeriodOn -float 30000
defaults write -g NSTextInsertionPointBlinkPeriodOff -float 1
```
This input causes the cursor to be on for 30 seconds, off for just a millisecond, then on again. Though this is not technically “off,” with these values the blink is not noticeable and is as good as being off.
#### On Linux:
##### GNOME
Enter `gsettings set org.gnome.desktop.interface cursor-blink false` in a terminal.
##### Xfce
- Enter `xfconf-query -c xsettings -p /Net/CursorBlink -s false` in a terminal.
- OR (changes above value) navigate to the Keyboard settings and on the first tab (Behavior) uncheck “Show blinking” in the Cursor section.
##### MATE
- Enter `gsettings set org.mate.interface cursor-blink false` in a terminal.
- OR (changes above value) navigate to Preferences -> Keyboard and uncheck "Cursor blinks in text fields."
##### KDE (since 5.11)
Edit the ~/.config/kdeglobals file, adding `CursorBlinkRate=0` to the `[KDE]` section.
<cr>
2. On macOS it may be necessary to then log out and back in. Within the other two OSes, the effect should be immediate.
3. Use _any_ app built with Electron. Place the cursor in any text field. It will continue to blink on steadily, irrespective of what you have just done with the blink rate settings.
Bonus: Thanks, [Charles A. Kiesling, Sr. (1930-2014)](https://docs.google.com/viewer?url=patentimages.storage.googleapis.com/pdfs/US3531796.pdf)!
(17/11/21) EDITED to add: Xfce cursor blink settings
(18/8/30) EDITED to add: MATE and KDE cursor blink settings
|
https://github.com/electron/electron/issues/10668
|
https://github.com/electron/electron/pull/20020
|
805a55099b777c8111cc405ac389c637bc696815
|
5cbbd489d51fe917d432f73325b0da44664bc4a3
| 2017-10-02T05:08:17Z |
c++
| 2019-08-30T14:39:46Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,657 |
["atom/browser/native_window_mac.mm"]
|
macOS High Sierra: native window tabs are not showing up properly
|
* Electron version: 1.7.x
* Operating system: mac OS 10.13.0 (high sierra)
### Expected behavior
Native tabs show up properly like in the finder:

### Actual behavior
Native tabs are not showing up at all even though some space is reserved to show them:

### How to reproduce
Just set `tabbingIdentifier` to a `BrowserWindow` and make sure to "View > Show Tab Bar".
This all works fine in macOS Sierra, so it must be a regression with High Sierra. Do we maybe have some checks in the code that test for Sierra but not newer releases?
ping @tonyganch
|
https://github.com/electron/electron/issues/10657
|
https://github.com/electron/electron/pull/10696
|
03588620664c0c4f44f8eb355b5d00eb36cb43ba
|
cbda307ebf2fb61748037424cd73564feba6e23a
| 2017-09-29T09:23:09Z |
c++
| 2017-10-17T14:24:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,655 |
["brightray/browser/mac/cocoa_notification.mm", "brightray/browser/mac/notification_presenter_mac.mm"]
|
Can't get callback(click or reply event) from Notification on MainProcess
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.7.8
* Operating system: MacOS High Sierra(10.13)
### Expected behavior
Trigger callback when I click notification.
### Actual behavior
nothing happened.
### How to reproduce
```js
const { app, BrowserWindow, Notification, ipcMain, nativeImage } = require('electron')
ipcMain.on('notify', async (e, opts) => {
const isSupported = Notification.isSupported()
let icon;
if (opts.url) {
icon = await covertImage(opts.url)
}
console.log('isSupported', isSupported)
if (!isSupported) return
const data = {
title: opts.title,
body: opts.body,
hasReply: opts.hasReply,
};
const notify = new Notification(icon ? Object.assign(data, { icon }) : data)
notify.on('reply', (e, replyText) => {
console.log('replayText', replyText)
})
notify.show()
})
```
|
https://github.com/electron/electron/issues/10655
|
https://github.com/electron/electron/pull/10709
|
71f13620d3c59ce4b295b5f398847bb7b3aaa226
|
4dc74776c18a45c43e8203e095c7f919605e74d6
| 2017-09-29T06:55:42Z |
c++
| 2017-10-17T07:18:53Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,610 |
["brightray/browser/win/notification_presenter_win.cc"]
|
Browser-process notifications are missing/duplicating images
|
The browser-process notifications are either missing or reusing images from the last notification. The reason is simple: In [atom_api_notification, we set the](base::TimeTicks::Now()) `icon_url` to `GURL()`, but in the notification presenter, [we assume an okay and unique path](https://github.com/electron/electron/blob/master/brightray/browser/win/notification_presenter_win.cc#L68-L73).
* Electron version: 1.7+
* Operating system: Windows
### Expected behavior
Notifications should contain the passed icon
### Actual behavior
Notifications contain either no or the last passed icon
### How to reproduce
Use browser-process notifications and attach an image on Windows 10 as icon. Now, send another notification with a different image. Observe how the first icon is shown.
|
https://github.com/electron/electron/issues/10610
|
https://github.com/electron/electron/pull/10611
|
c33c21e174562e25b514f72e00855083287bc669
|
dfd90c3526cbbb1aaa728b3abc08be0c93b573e1
| 2017-09-25T20:55:28Z |
c++
| 2017-09-26T00:54:43Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,575 |
["atom/browser/native_window_mac.mm", "atom/browser/ui/cocoa/atom_menu_controller.mm"]
|
Bug with menu
|
Menu on Mac OS do not works properly when using "role". Example:
{
label: "My custom label",
role: 'togglefullscreen'
},
On windows i see label - "My custom label".
On mac - "Enter Full Screen".
|
https://github.com/electron/electron/issues/10575
|
https://github.com/electron/electron/pull/11633
|
d0af17e601710fbdef75d4ea1bc3c3c1e101e458
|
2b4cc0a5254b11dce6f3414a5d9d349edd3e6c7f
| 2017-09-22T08:04:33Z |
c++
| 2018-01-19T14:27:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,571 |
["brightray/brightray.gypi", "vendor/libchromiumcontent"]
|
v.1.8.0 crashes
|
* Electron version: 1.8.0
* Operating system: OSX 10.12.6
### Expected behavior
Dont crash
### Actual behavior
Crashes
### How to reproduce
I'm really not sure why it does this. It appears to load to a certain point then fails. I am not really sure how to debug it properly since it doesn't really give very good errors and the chrome dev tools crashes as well immediately.
I know it's beta, just thought I would report it so that y'all can make sure to fix it before release :-).
```
2017-09-21 11:04:10.579 Electron Helper[19492:2674142] Couldn't set selectedTextBackgroundColor from default ()
[19483:0921/110410.635787:ERROR:CONSOLE(7323)] "Extension server error: Object not found: <top>", source: chrome-devtools://devtools/bundled/inspector.js (7323)
[19483:0921/110411.633428:ERROR:CONSOLE(7323)] "Extension server error: Object not found: <top>", source: chrome-devtools://devtools/bundled/inspector.js (7323)
[19483:0921/110412.633262:ERROR:CONSOLE(7323)] "Extension server error: Object not found: <top>", source: chrome-devtools://devtools/bundled/inspector.js (7323)
[19483:0921/110413.637429:ERROR:CONSOLE(7323)] "Extension server error: Object not found: <top>", source: chrome-devtools://devtools/bundled/inspector.js (7323)
[19483:0921/110414.721700:ERROR:CONSOLE(7323)] "Extension server error: Object not found: <top>", source: chrome-devtools://devtools/bundled/inspector.js (7323)
[19483:0921/110414.765073:ERROR:CONSOLE(7323)] "Extension server error: Operation failed: : has no execution context", source: chrome-devtools://devtools/bundled/inspector.js (7323)
```
I also get this, which I assume is related to the { type: "texture" } setting that I am using (and never has appeared to do a single thing even on older versions )
```
[19484:0921/110416.664714:ERROR:gles2_cmd_decoder.cc(17652)] [.DisplayCompositor-0x7fb96f8dda00]GL ERROR :GL_INVALID_OPERATION : glCreateAndConsumeTextureCHROMIUM: invalid mailbox name
[19484:0921/110416.664780:ERROR:gles2_cmd_decoder.cc(12034)] [.DisplayCompositor-0x7fb96f8dda00]GL ERROR :GL_INVALID_VALUE : glScheduleCALayerCHROMIUM: unsupported texture format
[19484:0921/110416.664838:ERROR:gles2_cmd_decoder.cc(17652)] [.DisplayCompositor-0x7fb96f8dda00]GL ERROR :GL_INVALID_OPERATION : glCreateAndConsumeTextureCHROMIUM: invalid mailbox name
[19484:0921/110416.664890:ERROR:gles2_cmd_decoder.cc(12034)] [.DisplayCompositor-0x7fb96f8dda00]GL ERROR :GL_INVALID_VALUE : glScheduleCALayerCHROMIUM: unsupported texture format
[19484:0921/110416.664956:ERROR:gles2_cmd_decoder.cc(17652)] [.DisplayCompositor-0x7fb96f8dda00]GL ERROR :GL_INVALID_OPERATION : glCreateAndConsumeTextureCHROMIUM: invalid mailbox name
[19484:0921/110416.664978:ERROR:gles2_cmd_decoder.cc(12034)] [.DisplayCompositor-0x7fb96f8dda00]GL ERROR :GL_INVALID_VALUE : glScheduleCALayerCHROMIUM: unsupported texture format
```
crash still occurs if i change that value.
According to the crash log it appears to be a seg fault
```
Process: Electron Helper [19560]
Path: /Users/USER/Desktop/*/Electron.app/Contents/Frameworks/Electron Helper.app/Contents/MacOS/Electron Helper
Identifier: Electron Helper
Version: 0
Code Type: X86-64 (Native)
Parent Process: Electron [19540]
Responsible: Electron Helper [19560]
User ID: 501
Date/Time: 2017-09-21 11:10:08.127 -0700
OS Version: Mac OS X 10.12.6 (16G29)
Report Version: 12
Anonymous UUID: C035C98B-6867-3BCF-9FC9-AABF655C49BE
Time Awake Since Boot: 320000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 CrRendererMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: EXC_I386_GPFLT
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [0]
Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread
0 libnode.dylib 0x000000010798b050 node::Environment::EnvPromiseHook(v8::PromiseHookType, v8::Local<v8::Promise>, v8::Local<v8::Value>) + 64
1 libnode.dylib 0x00000001081785e4 0x1078b4000 + 9192932
2 ??? 0x000020fdabd843fd 0 + 36273881891837
3 ??? 0x000020fdabe068ef 0 + 36273882425583
4 ??? 0x000020fdabe776fc 0 + 36273882887932
5 ??? 0x000020fdabe3bd9c 0 + 36273882643868
6 ??? 0x000020fdabe77f61 0 + 36273882890081
7 ??? 0x000020fdabe3bd9c 0 + 36273882643868
8 ??? 0x000020fdabe780b2 0 + 36273882890418
9 ??? 0x000020fdabe3bd9c 0 + 36273882643868
10 ??? 0x000020fdabe776fc 0 + 36273882887932
11 ??? 0x000020fdabe3bd9c 0 + 36273882643868
12 ??? 0x000020fdabd85a7b 0 + 36273881897595
13 ??? 0x000020fdabe779e5 0 + 36273882888677
14 ??? 0x000020fdabe3bd9c 0 + 36273882643868
15 ??? 0x000020fdabe78202 0 + 36273882890754
16 ??? 0x000020fdabe3bd9c 0 + 36273882643868
17 ??? 0x000020fdabe78202 0 + 36273882890754
18 ??? 0x000020fdabe3bd9c 0 + 36273882643868
19 ??? 0x000020fdabd85a7b 0 + 36273881897595
20 ??? 0x000020fdabe779e5 0 + 36273882888677
21 ??? 0x000020fdabe3bd9c 0 + 36273882643868
22 ??? 0x000020fdabe776fc 0 + 36273882887932
23 ??? 0x000020fdabe3bd9c 0 + 36273882643868
24 ??? 0x000020fdabe3b079 0 + 36273882640505
25 ??? 0x000020fdabdaaaad 0 + 36273882049197
26 libnode.dylib 0x0000000107d43283 0x1078b4000 + 4780675
27 libnode.dylib 0x0000000107d42f69 v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*) + 169
28 libnode.dylib 0x0000000107aeca96 v8::Script::Run(v8::Local<v8::Context>) + 614
29 com.github.electron.framework 0x000000010b737215 0x10932d000 + 37790229
30 com.github.electron.framework 0x000000010b6dcade 0x10932d000 + 37419742
31 com.github.electron.framework 0x000000010b6dd58e 0x10932d000 + 37422478
32 com.github.electron.framework 0x000000010b6dd6be 0x10932d000 + 37422782
33 com.github.electron.framework 0x000000010b8ffe1b 0x10932d000 + 39661083
34 com.github.electron.framework 0x000000010b8ff21a 0x10932d000 + 39658010
35 com.github.electron.framework 0x000000010bb8b395 0x10932d000 + 42328981
36 com.github.electron.framework 0x000000010bb8b1b2 0x10932d000 + 42328498
37 com.github.electron.framework 0x000000010bb5b3e9 0x10932d000 + 42132457
38 com.github.electron.framework 0x000000010bb5990b 0x10932d000 + 42125579
39 com.github.electron.framework 0x000000010c2147d2 0x10932d000 + 49182674
40 com.github.electron.framework 0x00000001095b25b1 0x10932d000 + 2643377
41 com.github.electron.framework 0x000000010c1be64f 0x10932d000 + 48830031
42 com.github.electron.framework 0x000000010c1bc6a2 0x10932d000 + 48821922
43 com.github.electron.framework 0x00000001095b25b1 0x10932d000 + 2643377
44 com.github.electron.framework 0x000000010957aa7b 0x10932d000 + 2415227
45 com.github.electron.framework 0x000000010957adcc 0x10932d000 + 2416076
46 com.github.electron.framework 0x000000010957b183 0x10932d000 + 2417027
47 com.github.electron.framework 0x000000010957e60a 0x10932d000 + 2430474
48 com.github.electron.framework 0x000000010952d7ca 0x10932d000 + 2099146
49 com.github.electron.framework 0x000000010957e02f 0x10932d000 + 2428975
50 com.apple.CoreFoundation 0x00007fffc45ff321 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
51 com.apple.CoreFoundation 0x00007fffc45e021d __CFRunLoopDoSources0 + 557
52 com.apple.CoreFoundation 0x00007fffc45df716 __CFRunLoopRun + 934
53 com.apple.CoreFoundation 0x00007fffc45df114 CFRunLoopRunSpecific + 420
54 com.apple.Foundation 0x00007fffc5ff2252 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
55 com.github.electron.framework 0x000000010957ecae 0x10932d000 + 2432174
56 com.github.electron.framework 0x000000010957e46c 0x10932d000 + 2430060
57 com.github.electron.framework 0x000000010957a74e 0x10932d000 + 2414414
58 com.github.electron.framework 0x0000000109593883 0x10932d000 + 2517123
59 com.github.electron.framework 0x0000000109ee320c 0x10932d000 + 12280332
60 com.github.electron.framework 0x000000010974fc7b 0x10932d000 + 4336763
61 com.github.electron.framework 0x000000010b211418 0x10932d000 + 32392216
62 com.github.electron.framework 0x000000010974eed4 0x10932d000 + 4333268
63 com.github.electron.framework 0x000000010932f48a AtomMain + 74
64 com.github.electron.helper 0x000000010777af26 main + 38
65 libdyld.dylib 0x00007fffd9d67235 start + 1
Thread 1:
0 libsystem_kernel.dylib 0x00007fffd9e9644e __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fffd9f80621 _pthread_wqthread + 1426
2 libsystem_pthread.dylib 0x00007fffd9f8007d start_wqthread + 13
Thread 2:
0 libsystem_kernel.dylib 0x00007fffd9e9644e __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fffd9f8048e _pthread_wqthread + 1023
2 libsystem_pthread.dylib 0x00007fffd9f8007d start_wqthread + 13
Thread 3:
0 libsystem_kernel.dylib 0x00007fffd9e9644e __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fffd9f80621 _pthread_wqthread + 1426
2 libsystem_pthread.dylib 0x00007fffd9f8007d start_wqthread + 13
Thread 4:: TaskSchedulerServiceThread
0 libsystem_kernel.dylib 0x00007fffd9e96d96 kevent + 10
1 com.github.electron.framework 0x00000001095e5e69 0x10932d000 + 2854505
2 com.github.electron.framework 0x00000001095e4ffd 0x10932d000 + 2850813
3 com.github.electron.framework 0x000000010957da7f 0x10932d000 + 2427519
4 com.github.electron.framework 0x000000010957a74e 0x10932d000 + 2414414
5 com.github.electron.framework 0x0000000109593883 0x10932d000 + 2517123
6 com.github.electron.framework 0x00000001095b5619 0x10932d000 + 2655769
7 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
8 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
9 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
10 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 5:: Chrome_ChildIOThread
0 libsystem_kernel.dylib 0x00007fffd9e96d96 kevent + 10
1 com.github.electron.framework 0x00000001095e5e69 0x10932d000 + 2854505
2 com.github.electron.framework 0x00000001095e4ffd 0x10932d000 + 2850813
3 com.github.electron.framework 0x000000010957da7f 0x10932d000 + 2427519
4 com.github.electron.framework 0x000000010957a74e 0x10932d000 + 2414414
5 com.github.electron.framework 0x0000000109593883 0x10932d000 + 2517123
6 com.github.electron.framework 0x00000001095b5619 0x10932d000 + 2655769
7 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
8 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
9 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
10 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 6:: GpuMemoryThread
0 libsystem_kernel.dylib 0x00007fffd9e8e34a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fffd9e8d797 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fffc45e0434 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fffc45df8c1 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fffc45df114 CFRunLoopRunSpecific + 420
5 com.github.electron.framework 0x000000010957e9cf 0x10932d000 + 2431439
6 com.github.electron.framework 0x000000010957e46c 0x10932d000 + 2430060
7 com.github.electron.framework 0x000000010957a74e 0x10932d000 + 2414414
8 com.github.electron.framework 0x0000000109593883 0x10932d000 + 2517123
9 com.github.electron.framework 0x00000001095b5619 0x10932d000 + 2655769
10 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
11 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
12 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
13 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 7:: Compositor
0 libsystem_kernel.dylib 0x00007fffd9e8e34a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fffd9e8d797 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fffc45e0434 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fffc45df8c1 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fffc45df114 CFRunLoopRunSpecific + 420
5 com.github.electron.framework 0x000000010957e9cf 0x10932d000 + 2431439
6 com.github.electron.framework 0x000000010957e46c 0x10932d000 + 2430060
7 com.github.electron.framework 0x000000010957a74e 0x10932d000 + 2414414
8 com.github.electron.framework 0x0000000109593883 0x10932d000 + 2517123
9 com.github.electron.framework 0x00000001095b5619 0x10932d000 + 2655769
10 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
11 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
12 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
13 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 8:: Renderer::FILE
0 libsystem_kernel.dylib 0x00007fffd9e8e34a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fffd9e8d797 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fffc45e0434 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fffc45df8c1 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fffc45df114 CFRunLoopRunSpecific + 420
5 com.github.electron.framework 0x000000010957e9cf 0x10932d000 + 2431439
6 com.github.electron.framework 0x000000010957e46c 0x10932d000 + 2430060
7 com.github.electron.framework 0x000000010957a74e 0x10932d000 + 2414414
8 com.github.electron.framework 0x0000000109593883 0x10932d000 + 2517123
9 com.github.electron.framework 0x00000001095b5619 0x10932d000 + 2655769
10 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
11 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
12 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
13 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 9:: CompositorTileWorker1/22275
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f817fa _pthread_cond_wait + 712
2 com.github.electron.framework 0x0000000109d98ff9 0x10932d000 + 10928121
3 com.github.electron.framework 0x00000001095a005c 0x10932d000 + 2568284
4 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
5 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
6 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
7 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 10:: CompositorTileWorker2/22787
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f817fa _pthread_cond_wait + 712
2 com.github.electron.framework 0x0000000109d98ff9 0x10932d000 + 10928121
3 com.github.electron.framework 0x00000001095a005c 0x10932d000 + 2568284
4 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
5 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
6 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
7 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 11:: CompositorTileWorker3/23299
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f817fa _pthread_cond_wait + 712
2 com.github.electron.framework 0x0000000109d98ff9 0x10932d000 + 10928121
3 com.github.electron.framework 0x00000001095a005c 0x10932d000 + 2568284
4 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
5 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
6 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
7 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 12:: CompositorTileWorker4/23811
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f817fa _pthread_cond_wait + 712
2 com.github.electron.framework 0x0000000109d98ff9 0x10932d000 + 10928121
3 com.github.electron.framework 0x00000001095a005c 0x10932d000 + 2568284
4 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
5 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
6 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
7 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 13:: CompositorTileWorkerBackground/24323
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f817fa _pthread_cond_wait + 712
2 com.github.electron.framework 0x0000000109d98ff9 0x10932d000 + 10928121
3 com.github.electron.framework 0x00000001095a005c 0x10932d000 + 2568284
4 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
5 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
6 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
7 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 14:: WorkerPool/27907
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f81833 _pthread_cond_wait + 769
2 com.github.electron.framework 0x000000010953255b 0x10932d000 + 2119003
3 com.github.electron.framework 0x00000001095e0cc6 0x10932d000 + 2833606
4 com.github.electron.framework 0x00000001095e1158 0x10932d000 + 2834776
5 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
6 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 15:: WorkerPool/28419
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f81833 _pthread_cond_wait + 769
2 com.github.electron.framework 0x000000010953255b 0x10932d000 + 2119003
3 com.github.electron.framework 0x00000001095e0cc6 0x10932d000 + 2833606
4 com.github.electron.framework 0x00000001095e1158 0x10932d000 + 2834776
5 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
6 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 16:: WorkerPool/29955
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f81833 _pthread_cond_wait + 769
2 com.github.electron.framework 0x000000010953255b 0x10932d000 + 2119003
3 com.github.electron.framework 0x00000001095e0cc6 0x10932d000 + 2833606
4 com.github.electron.framework 0x00000001095e1158 0x10932d000 + 2834776
5 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
6 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 17:
0 libsystem_kernel.dylib 0x00007fffd9e95eb6 __select + 10
1 com.github.electron.framework 0x0000000109442d42 atom::NodeBindingsMac::PollEvents() + 210
2 com.github.electron.framework 0x00000001094423df atom::NodeBindings::EmbedThreadRunner(void*) + 63
3 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
4 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
5 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 18:: ScriptStreamerThread
0 libsystem_kernel.dylib 0x00007fffd9e8e34a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fffd9e8d797 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fffc45e0434 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fffc45df8c1 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fffc45df114 CFRunLoopRunSpecific + 420
5 com.github.electron.framework 0x000000010957e9cf 0x10932d000 + 2431439
6 com.github.electron.framework 0x000000010957e46c 0x10932d000 + 2430060
7 com.github.electron.framework 0x000000010957a74e 0x10932d000 + 2414414
8 com.github.electron.framework 0x0000000109593883 0x10932d000 + 2517123
9 com.github.electron.framework 0x00000001095b5619 0x10932d000 + 2655769
10 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
11 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
12 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
13 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 19:: TaskSchedulerRendererBackgroundBlockingWorker0
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f81833 _pthread_cond_wait + 769
2 com.github.electron.framework 0x000000010953255b 0x10932d000 + 2119003
3 com.github.electron.framework 0x00000001095de180 0x10932d000 + 2822528
4 com.github.electron.framework 0x00000001095de2b1 0x10932d000 + 2822833
5 com.github.electron.framework 0x0000000109595b08 0x10932d000 + 2525960
6 com.github.electron.framework 0x00000001095961cd 0x10932d000 + 2527693
7 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
8 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
9 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
10 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 20:: WorkerPool/28935
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f81833 _pthread_cond_wait + 769
2 com.github.electron.framework 0x000000010953255b 0x10932d000 + 2119003
3 com.github.electron.framework 0x00000001095e0cc6 0x10932d000 + 2833606
4 com.github.electron.framework 0x00000001095e1158 0x10932d000 + 2834776
5 com.github.electron.framework 0x0000000109588757 0x10932d000 + 2471767
6 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 21:
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f817fa _pthread_cond_wait + 712
2 libnode.dylib 0x0000000107a36229 uv_cond_wait + 9
3 libnode.dylib 0x0000000107a2a1f3 0x1078b4000 + 1532403
4 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
5 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
6 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 22:
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f817fa _pthread_cond_wait + 712
2 libnode.dylib 0x0000000107a36229 uv_cond_wait + 9
3 libnode.dylib 0x0000000107a2a1f3 0x1078b4000 + 1532403
4 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
5 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
6 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 23:
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f817fa _pthread_cond_wait + 712
2 libnode.dylib 0x0000000107a36229 uv_cond_wait + 9
3 libnode.dylib 0x0000000107a2a1f3 0x1078b4000 + 1532403
4 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
5 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
6 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 24:
0 libsystem_kernel.dylib 0x00007fffd9e95bf2 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fffd9f817fa _pthread_cond_wait + 712
2 libnode.dylib 0x0000000107a36229 uv_cond_wait + 9
3 libnode.dylib 0x0000000107a2a1f3 0x1078b4000 + 1532403
4 libsystem_pthread.dylib 0x00007fffd9f8093b _pthread_body + 180
5 libsystem_pthread.dylib 0x00007fffd9f80887 _pthread_start + 286
6 libsystem_pthread.dylib 0x00007fffd9f8008d thread_start + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000386d41f82311 rbx: 0x5a00001059e09823 rcx: 0x00007fb652042338 rdx: 0x00007fb652002020
rdi: 0x00007fb652042330 rsi: 0x00007fff5847d600 rbp: 0x00007fff5847d590 rsp: 0x00007fff5847d560
r8: 0x0000000000000040 r9: 0x00007fb652003820 r10: 0xffffffffffffffff r11: 0x0000000000012068
r12: 0x00007fff5847d600 r13: 0x0000000000231a8a r14: 0x00007fff5847d5f8 r15: 0x0000000000000000
rip: 0x000000010798b050 rfl: 0x0000000000010216 cr2: 0x00007fff4fe04000
Logical CPU: 2
Error Code: 0x00000000
Trap Number: 13
Binary Images:
0x10777a000 - 0x10777aff7 +com.github.electron.helper (0) <4CF9CEEE-ED51-3CFB-8C00-D1C780250227> /Users/USER/Desktop/*/Electron.app/Contents/Frameworks/Electron Helper.app/Contents/MacOS/Electron Helper
0x10777d000 - 0x107797fff +com.github.Squirrel (1.0 - 1) <0A9F60FF-F2D2-364A-962A-65137E68760E> /Users/USER/Desktop/*/Electron.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x1077b9000 - 0x10781cff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Users/USER/Desktop/*/Electron.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x10788e000 - 0x1078a2fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Users/USER/Desktop/*/Electron.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x1078b4000 - 0x108794ff7 +libnode.dylib (0) <AC1CA1C5-BC0A-3F32-8489-4745B819C8E7> /Users/USER/Desktop/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libnode.dylib
0x108a28000 - 0x108c90fff +libffmpeg.dylib (0) <3F10DA70-D3AD-3B17-8753-3B07CE2F03CE> /Users/USER/Desktop/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x108e9a000 - 0x108ed8ff7 com.apple.audio.midi.CoreMIDI (1.10 - 88) <5E2D1F53-B466-312E-AEA7-117B68C9A7F0> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x108f00000 - 0x108f16fff com.apple.SafariServices.framework (12604 - 12604.1.38.1.7) <88D1F7A2-5FC3-3A97-9F7D-28D5D84394B6> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x108f31000 - 0x108f4affb libexpat.1.dylib (15) <F48F1B7B-BEB4-32EE-8C5D-0370096F3864> /usr/lib/libexpat.1.dylib
0x1092a2000 - 0x1092dfdc7 dyld (433.5) <322C06B7-8878-311D-888C-C8FD2CA96FF3> /usr/lib/dyld
0x10932d000 - 0x10d33ff87 +com.github.electron.framework (0) <45CFF490-2804-3766-8B93-FFF7842F2AAD> /Users/USER/Desktop/*/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x7fffc0d85000 - 0x7fffc0f46fff com.apple.avfoundation (2.0 - 1187.36) <2F390EAD-07BB-3788-9E73-13104C2E04CD> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fffc0f47000 - 0x7fffc0fe9ff7 com.apple.audio.AVFAudio (1.0 - ???) <7997D588-B542-3EBB-B822-D719C1114BB4> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fffc10b4000 - 0x7fffc10b4fff com.apple.Accelerate (1.11 - Accelerate 1.11) <916E360F-323C-3AE1-AB3D-D1F3B284AEE9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fffc10b5000 - 0x7fffc10ccffb libCGInterfaces.dylib (331.5) <17109679-A284-3C72-AA60-DBA815D3062B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fffc10cd000 - 0x7fffc15e6feb com.apple.vImage (8.1 - ???) <B58A7937-BEE2-38FE-87F4-5D5F40D31DC9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fffc15e7000 - 0x7fffc1758ff3 libBLAS.dylib (1185.50.4) <4087FFE0-627E-3623-96B4-F0A9A1991E09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fffc1759000 - 0x7fffc176dffb libBNNS.dylib (15) <254698C7-7D36-3FFF-864E-ADEEEE543076> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fffc176e000 - 0x7fffc1b64fef libLAPACK.dylib (1185.50.4) <C35FFB2F-A0E6-3903-8A3C-113A74BCBCA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fffc1b65000 - 0x7fffc1b7bfff libLinearAlgebra.dylib (1185.50.4) <345CAACF-7263-36EF-B69B-793EA8B390AF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fffc1b7c000 - 0x7fffc1b82fff libQuadrature.dylib (3) <EF56C8E6-DE22-3C69-B543-A8648F335FDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fffc1b83000 - 0x7fffc1b97ff7 libSparseBLAS.dylib (1185.50.4) <67BA432E-FB59-3C78-A8BE-ED4274CBC359> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fffc1b98000 - 0x7fffc1d1ffe7 libvDSP.dylib (600.60.1) <4155F45B-41CD-3782-AE8F-7AE740FD83C3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fffc1d20000 - 0x7fffc1dd2fff libvMisc.dylib (600.60.1) <E18365D7-DCC4-3304-A8D1-395E656D7B99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fffc1dd3000 - 0x7fffc1dd3fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <7C5733E7-0568-3E7D-AF61-160F19FED544> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fffc2092000 - 0x7fffc2e6bff3 com.apple.AppKit (6.9 - 1504.83.101) <AE51ACB3-D501-3F91-B369-3D3711F24D0A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fffc2e7d000 - 0x7fffc2e7dfff com.apple.ApplicationServices (48 - 48) <DA687F9A-7B2D-342B-8796-16E45344F853> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fffc2e7e000 - 0x7fffc2eecff7 com.apple.ApplicationServices.ATS (377 - 422.2) <A31D17BE-F747-39FB-9A84-5F2F8891204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fffc2f86000 - 0x7fffc30b5ff7 libFontParser.dylib (194.12) <73C3946D-EF92-3AC1-89C3-0E75B2A85325> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fffc30b6000 - 0x7fffc3100fff libFontRegistry.dylib (196.4) <EA96AE47-3369-3DEA-BB82-98348ADBD85B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fffc31fd000 - 0x7fffc32a7ff7 com.apple.ColorSync (4.12.0 - 502.2) <ACA4001E-A0E3-33F6-9CD6-EEC2AA15E322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fffc32a8000 - 0x7fffc32f9fff com.apple.HIServices (1.22 - 593) <045870A9-1D92-3FEF-8722-671E99A35E71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fffc32fa000 - 0x7fffc3309ff3 com.apple.LangAnalysis (1.7.0 - 1.7.0) <2CBE7F61-2056-3F96-99A1-0D527796AFA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fffc330a000 - 0x7fffc3357fff com.apple.print.framework.PrintCore (12 - 491) <5027FD58-F0EE-33E4-8577-934CA06CD2AF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fffc3358000 - 0x7fffc3393fff com.apple.QD (3.12 - 313) <B339C41D-8CDF-3342-8414-F9717DCCADD4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fffc3394000 - 0x7fffc339ffff com.apple.speech.synthesis.framework (6.6.2 - 6.6.2) <7853EFF4-62B9-394E-B7B8-41A645656820> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fffc33a0000 - 0x7fffc35acff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <01518CAB-7DAD-3F09-83F8-B9FE0ABE998F> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fffc35ad000 - 0x7fffc35adfff com.apple.audio.units.AudioUnit (1.14 - 1.14) <B92868F8-2F15-32C0-A5BE-4ABA546B8BE1> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fffc3716000 - 0x7fffc3af0fff com.apple.CFNetwork (811.5.4 - 811.5.4) <46B1227B-F38C-3F8E-B0B5-5D9861ABF36B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fffc3b0a000 - 0x7fffc3b0afff com.apple.Carbon (154 - 157) <69F403C7-F0CB-34E6-89B0-235CF4978C17> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fffc3b0b000 - 0x7fffc3b0efff com.apple.CommonPanels (1.2.6 - 98) <BF04BB22-D54C-309E-9F5C-897D969CAF70> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fffc3b0f000 - 0x7fffc3e18fff com.apple.HIToolbox (2.1.1 - 857.8) <5367366E-747E-32CF-8E76-93CD8E7424C7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fffc3e19000 - 0x7fffc3e1cff7 com.apple.help (1.3.5 - 49) <B1A930E3-5907-3677-BACD-858EF68B172D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fffc3e1d000 - 0x7fffc3e22fff com.apple.ImageCapture (9.0 - 9.0) <341252B4-E082-361A-B756-6A330259C741> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fffc3e23000 - 0x7fffc3ebaff3 com.apple.ink.framework (10.9 - 219) <1BD40B45-FD33-3177-A935-565EE5FC79D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fffc3ebb000 - 0x7fffc3ed5fff com.apple.openscripting (1.7 - 172) <31CFBB35-24BD-3E12-9B6B-1FA842FB605B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fffc3ed6000 - 0x7fffc3ed7ff3 com.apple.print.framework.Print (12 - 267) <E2F82F1F-DC27-3EF0-9F75-B354F701450A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fffc3ed8000 - 0x7fffc3edaff7 com.apple.securityhi (9.0 - 55006) <DBD65629-535D-3669-8218-7F074D61638C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fffc3edb000 - 0x7fffc3ee1ff7 com.apple.speech.recognition.framework (6.0.1 - 6.0.1) <082895DC-3AC7-3DEF-ADCA-5B018C19C9D3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fffc3fc2000 - 0x7fffc3fc2fff com.apple.Cocoa (6.11 - 22) <85EDFBE1-75F0-369E-8CA8-C6A639B98FA6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fffc410c000 - 0x7fffc4199fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <78767F88-91D4-31CE-AAC6-1F9407F479BB> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fffc419a000 - 0x7fffc41adfff com.apple.CoreBluetooth (1.0 - 1) <BCB78777-76F0-3CC1-8443-9E61AEF7EF63> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fffc41ae000 - 0x7fffc44a9fff com.apple.CoreData (120 - 754.2) <4C9CAB2C-60D4-3694-A0A0-5B04B14BD14E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fffc44aa000 - 0x7fffc4557ff7 com.apple.CoreDisplay (1.0 - 1) <53D1EAFE-23A4-398D-BF52-E4299E670DB6> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fffc4558000 - 0x7fffc49f1ff7 com.apple.CoreFoundation (6.9 - 1349.8) <09ED473E-5DE8-307F-B55C-16F6419236D5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fffc49f2000 - 0x7fffc5074fff com.apple.CoreGraphics (2.0 - 1070.22) <FAB476BB-B5CD-3936-8AFC-41229DBDF0E8> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fffc5075000 - 0x7fffc52b8ffb com.apple.CoreImage (12.4.0 - 451.4.9) <BE4303C9-C9D9-361D-AC94-DBE40EB6700E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fffc531f000 - 0x7fffc53d0fff com.apple.CoreMedia (1.0 - 1907.59.1.6) <570690D8-A956-3629-9E46-4F8BDDB8A82C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fffc53d1000 - 0x7fffc541cff7 com.apple.CoreMediaIO (805.0 - 4932) <03F2B863-BF99-36DF-9A14-1DB534A289F3> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fffc541d000 - 0x7fffc541dfff com.apple.CoreServices (775.19 - 775.19) <7255917D-EFBB-3BE2-A8FD-DAD631BC0949> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fffc541e000 - 0x7fffc546ffff com.apple.AE (712.5 - 712.5) <61F2AE2C-E04E-3FDF-9E88-201325136C83> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fffc5470000 - 0x7fffc574bff7 com.apple.CoreServices.CarbonCore (1159.6 - 1159.6) <08AC074C-965B-3EDF-8E45-0707C8DE9EAD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fffc574c000 - 0x7fffc577ffff com.apple.DictionaryServices (1.2 - 274) <D23866E2-F7C8-3984-A9D4-96552CCDE573> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fffc5780000 - 0x7fffc5788ff3 com.apple.CoreServices.FSEvents (1230.50.1 - 1230.50.1) <2AD1B0E5-7214-37C4-8D11-A27C9CAC0F74> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fffc5789000 - 0x7fffc58f5ff7 com.apple.LaunchServices (775.19 - 775.19) <B75A0C49-E376-358C-81EE-6EFB0F605801> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fffc58f6000 - 0x7fffc59a6ffb com.apple.Metadata (10.7.0 - 1075.40) <B2FFCC10-5A9E-396B-B495-3D6C867669EE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fffc59a7000 - 0x7fffc5a06fff com.apple.CoreServices.OSServices (775.19 - 775.19) <4140569A-1848-3765-A52B-BB61C35CF88F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fffc5a07000 - 0x7fffc5a77fff com.apple.SearchKit (1.4.0 - 1.4.0) <7A6DDA2B-03F1-3137-BA9E-1CC211973E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fffc5a78000 - 0x7fffc5abdff7 com.apple.coreservices.SharedFileList (38 - 38) <DA096678-93AB-3291-BDE2-482F1D544589> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fffc5b46000 - 0x7fffc5c93ffb com.apple.CoreText (352.0 - 544.15) <BF0EE575-BB7E-3BF9-9029-232B4ADC24E4> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fffc5c94000 - 0x7fffc5cc9ff3 com.apple.CoreVideo (1.8 - 235.3) <AC11D5FB-C77B-34F5-B942-F698E84C229F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fffc5cca000 - 0x7fffc5d3bffb com.apple.framework.CoreWLAN (11.0 - 1200.31) <E47C0568-E37B-3052-9E77-F0F371DCDE7F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fffc5e39000 - 0x7fffc5e3efff com.apple.DiskArbitration (2.7 - 2.7) <70F56042-EF04-3BAF-9E04-90F423FB2BCC> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fffc5fd0000 - 0x7fffc6376fff com.apple.Foundation (6.9 - 1349.91) <A37CB4EC-0730-3DD6-9358-60491BF40EF2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fffc63a2000 - 0x7fffc63d3ff7 com.apple.GSS (4.0 - 2.0) <6FADED0B-0425-3567-A75A-040C5A4638EB> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fffc63d4000 - 0x7fffc63ecff7 com.apple.GameController (1.0 - 1) <DAC8C83B-7EC8-3A88-A725-E13DD905BF4F> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x7fffc6493000 - 0x7fffc6536fff com.apple.Bluetooth (5.0.5 - 5.0.5f1) <913B97A6-9E18-3F15-992D-D522AA22EDE9> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fffc6537000 - 0x7fffc65cdff7 com.apple.framework.IOKit (2.0.2 - 1324.60.3) <7CE4C98B-107C-3AAA-B49A-F2ACFCBBF526> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fffc65ce000 - 0x7fffc65d4ffb com.apple.IOSurface (159.9 - 159.9) <08F1A246-1367-32EC-B3CE-724379409729> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fffc65d5000 - 0x7fffc6626ff7 com.apple.ImageCaptureCore (7.0 - 7.0) <A640CA2F-8093-34AB-947C-26679ECB8A6D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fffc6627000 - 0x7fffc6787fef com.apple.ImageIO.framework (3.3.0 - 1599.12) <E54ADBF0-6001-3DEB-AEB0-3F857A781E06> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fffc6788000 - 0x7fffc678cfff libGIF.dylib (1599.12) <A0836C44-9566-32A3-ACCF-82A5BAF2E521> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fffc678d000 - 0x7fffc687dff7 libJP2.dylib (1599.12) <0DB4F152-B36D-365C-97B1-34F1C114982B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fffc687e000 - 0x7fffc68a1ffb libJPEG.dylib (1599.12) <2F66BA16-D569-35AD-A4BB-7A1909F1BF11> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fffc68a2000 - 0x7fffc68c9ff7 libPng.dylib (1599.12) <A068239E-7DB3-33AD-BEA9-499D8DEF771B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fffc68ca000 - 0x7fffc68ccff3 libRadiance.dylib (1599.12) <D26D6FC9-1175-38AB-ACAA-0CA073FD3978> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fffc68cd000 - 0x7fffc691bffb libTIFF.dylib (1599.12) <5D161E6A-D279-37A0-9F5F-A71A4C13BB09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fffc6a79000 - 0x7fffc7683fff com.apple.JavaScriptCore (12603 - 12603.3.8) <9557271A-1838-38DD-93E3-D8A9ECDE3B6B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fffc7684000 - 0x7fffc769dff7 com.apple.Kerberos (3.0 - 1) <B9D242EB-E325-3A21-9812-C77CBBFB0D51> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fffc7927000 - 0x7fffc792dfff com.apple.MediaAccessibility (1.0 - 97.1.1) <0BD82735-6644-37CE-B13D-8E7CC59A1752> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fffc7943000 - 0x7fffc7e7cff7 com.apple.MediaToolbox (1.0 - 1907.59.1.6) <FA068C6F-0506-35C3-A637-C4AFF82411DB> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fffc7e7d000 - 0x7fffc7ed8fff com.apple.Metal (87.18 - 87.18) <E3618B54-C728-34CA-9E8A-9BD33A295D31> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fffc87c1000 - 0x7fffc87c9fff com.apple.NetFS (6.0 - 4.0) <14A24D00-5673-330A-959D-87F72040DEFF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fffc89a9000 - 0x7fffc89f7ff3 com.apple.opencl (2.8.6 - 2.8.6) <E78463D3-73B6-3002-BD71-9CC1D6722968> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fffc89f8000 - 0x7fffc8a11ffb com.apple.CFOpenDirectory (10.12 - 194) <A64E9A01-3F6E-36EA-9C10-88C564A68C9D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fffc8a12000 - 0x7fffc8a1dff7 com.apple.OpenDirectory (10.12 - 194) <4298FFD0-B1A7-3064-AF5B-708B3FA38671> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fffc8a1e000 - 0x7fffc8a20fff libCVMSPluginSupport.dylib (14.0.16) <9E12EB67-6630-39A0-AB93-77405F5EC2A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fffc8a21000 - 0x7fffc8a24ff7 libCoreFSCache.dylib (156.3) <687C4CC3-6537-344B-8BE1-5234C8CB2864> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fffc8a25000 - 0x7fffc8a29fff libCoreVMClient.dylib (156.3) <E7AEFCBE-B6BF-3C7C-9A4E-E78CB04DB794> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fffc8a2a000 - 0x7fffc8a33ff7 libGFXShared.dylib (14.0.16) <D10C7A01-8A11-3A42-A9FA-C411AE453B27> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fffc8a34000 - 0x7fffc8a3ffff libGL.dylib (14.0.16) <0801F3B9-A525-32BB-9BC0-478947CE21D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fffc8a40000 - 0x7fffc8a7cff7 libGLImage.dylib (14.0.16) <FE39C57B-056C-3CBF-B653-A8F2005631C1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fffc8bf4000 - 0x7fffc8c35ff7 libGLU.dylib (14.0.16) <B285EAD6-B3AA-3753-BB85-75864BD6E76C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fffc959d000 - 0x7fffc95abfff com.apple.opengl (14.0.16 - 14.0.16) <167C9883-A79E-3B7F-AFED-8CD6683B291D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fffc9648000 - 0x7fffc978ffff com.apple.QTKit (7.7.3 - 2978.7) <49F88771-52FE-3989-AAB7-10A7494C4419> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fffc9790000 - 0x7fffc99faff7 com.apple.imageKit (3.0 - 1023) <9C547565-CBAA-3ACB-A3F6-1366A0DCDCB4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fffc99fb000 - 0x7fffc9ac2fff com.apple.PDFKit (1.0 - 1) <BE82F14C-B20C-3771-B16C-F0723F6552AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fffc9ac3000 - 0x7fffc9fe9ff7 com.apple.QuartzComposer (5.1 - 356) <C66293F6-EF05-3B36-8524-081CEB9FADD7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fffc9fea000 - 0x7fffca00dffb com.apple.quartzfilters (1.10.0 - 1.10.0) <365342ED-7A1A-3C75-AE60-90764E96034C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fffca00e000 - 0x7fffca0fbfff com.apple.QuickLookUIFramework (5.0 - 720.7) <3136C23E-399E-3296-928A-B18EC9FC423C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fffca0fc000 - 0x7fffca0fcfff com.apple.quartzframework (1.5 - 21) <09455972-8A33-3D61-B193-BA7E7CF984CA> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fffca0fd000 - 0x7fffca2fdfff com.apple.QuartzCore (1.11 - 453.39.4) <A45AFBC4-87D4-3533-A0AC-1D6629C77984> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fffca2fe000 - 0x7fffca353fff com.apple.QuickLookFramework (5.0 - 720.7) <3BD7BA2F-924C-3EFF-B26E-3F930E62E6B4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fffca864000 - 0x7fffcab66ff7 com.apple.security (7.0 - 57740.60.18) <005E8C96-40B6-35E3-B58B-888A5F5957C2> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fffcab67000 - 0x7fffcabdcfff com.apple.securityfoundation (6.0 - 55132.50.7) <15C53957-A9DE-31AE-A192-949244F47CD7> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fffcabdd000 - 0x7fffcac06fff com.apple.securityinterface (10.0 - 55079.50.4) <C9B0E11A-362B-3C0D-8B2E-B06510BCE20A> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fffcac07000 - 0x7fffcac0aff3 com.apple.xpc.ServiceManagement (1.0 - 1) <BE0F9708-0B55-3E78-A15E-C287B8ED13BA> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fffcaf91000 - 0x7fffcb000ff7 com.apple.SystemConfiguration (1.14 - 1.14) <3FFD3930-B307-3E31-9FA6-12221EB0F969> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fffcb001000 - 0x7fffcb3affff com.apple.VideoToolbox (1.0 - 1907.59.1.6) <EB2577A4-DCDF-3FD1-B5FA-42A55653A74D> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fffcd857000 - 0x7fffcd872ff3 com.apple.AppContainer (4.0 - 307.50.21) <C2E6BA3D-81FF-39C3-B4BF-DBB9A17DE078> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fffcd873000 - 0x7fffcd880ff3 com.apple.AppSandbox (4.0 - 307.50.21) <BF9FA426-8C11-358B-9E1F-A3901E3F2B14> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fffcd881000 - 0x7fffcd8a3ffb com.apple.framework.Apple80211 (12.0 - 1200.47) <C3033EEE-771A-3664-BBDD-BE1F6D075FC7> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fffcd8a4000 - 0x7fffcd8b3feb com.apple.AppleFSCompression (88.50.3 - 1.0) <478E8BFF-8BA2-375E-BE02-BA27F115C15A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fffcd9a1000 - 0x7fffcda2c97f com.apple.AppleJPEG (1.0 - 1) <B9E9570D-04A4-34E4-B756-D200043B25B8> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fffcda65000 - 0x7fffcda68ff3 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <42A1731A-A576-307A-B07C-9F8F64696CB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fffcda69000 - 0x7fffcdabbfff com.apple.AppleVAFramework (5.0.36 - 5.0.36) <7352078D-C230-397C-81A5-57A48CF218C0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fffcde5f000 - 0x7fffcdeddff7 com.apple.backup.framework (1.8.5 - 1.8.5) <CC679891-E8F5-3166-8EB6-AEA06954A52D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fffceb68000 - 0x7fffceb8fff3 com.apple.ChunkingLibrary (173 - 173) <FC2165F9-FC93-39C0-8323-C2F43A5E00A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fffcf4b4000 - 0x7fffcf4bdffb com.apple.CommonAuth (4.0 - 2.0) <216950CB-269F-3476-BA17-D6363AC49FBC> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fffcf642000 - 0x7fffcfa21ff7 com.apple.CoreAUC (226.0.0 - 226.0.0) <FBF6C5BC-5937-3957-B6BA-E101DF9B0DF6> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fffcfa22000 - 0x7fffcfa52fff com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <3F6857D1-AE7C-3593-B064-930F5BB7269E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fffcfc06000 - 0x7fffcfc16fff com.apple.CoreEmoji (1.0 - 40.3.3) <E9A28301-2D79-3A97-A046-028258A6ABE5> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fffcfcdb000 - 0x7fffcfcf1ff3 com.apple.CoreMediaAuthoring (2.2 - 956) <AEBFF55F-BF1E-3CA5-AA9C-1CE22218A665> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fffcfcf8000 - 0x7fffcfd88ffb com.apple.CorePDF (4.0 - 4) <7F50E4A6-940C-33F5-BE4E-7E01AFE98A8F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fffcff51000 - 0x7fffcff81ff3 com.apple.CoreServicesInternal (276.2 - 276.2) <05EB7D45-DD4C-3A0F-AC63-A0C2A68E6481> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fffd0212000 - 0x7fffd02a1ff7 com.apple.CoreSymbolication (62046) <7839CD8E-011D-3567-88DE-3D472C661136> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fffd02a2000 - 0x7fffd03e1fe7 com.apple.coreui (2.1 - 431.3) <2E8FEC10-FC5B-3782-92DA-A85C24B7BF7C> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fffd03e2000 - 0x7fffd04b2ff3 com.apple.CoreUtils (5.1 - 510.31) <E68BB8ED-8874-36EC-A7C5-1017C0E727CB> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fffd0502000 - 0x7fffd0567ff3 com.apple.framework.CoreWiFi (12.0 - 1200.31) <DF0972EF-F817-3FD3-8C00-2D57B8738D8C> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fffd0568000 - 0x7fffd0576ff7 com.apple.CrashReporterSupport (10.12 - 827) <802A9B81-E349-348B-90AB-10E40B654250> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fffd05e8000 - 0x7fffd05f2ffb com.apple.framework.DFRFoundation (1.0 - 104.25) <7CFF896C-EF22-3941-BB3D-F3615CE4C908> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fffd05f3000 - 0x7fffd05f7ff3 com.apple.DSExternalDisplay (3.1 - 380) <4B5E3FF0-E8C3-38CC-BF72-418C928956AB> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fffd062d000 - 0x7fffd06a2ffb com.apple.datadetectorscore (7.0 - 539.1) <74595F6C-8283-3C73-9F56-C6FA957F8B94> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fffd06de000 - 0x7fffd071dfff com.apple.DebugSymbols (137 - 137) <58A70B66-2628-3CFE-B103-2200D95FC5F7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fffd071e000 - 0x7fffd082ffff com.apple.desktopservices (1.11.5 - 1.11.5) <46A9D4F3-1EF8-373C-98A4-AD48D285E484> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fffd0972000 - 0x7fffd097dfff com.apple.DisplayServicesFW (3.1 - 380) <0BDF6C17-5E5F-33F8-8E99-C7350C6F9667> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fffd0b17000 - 0x7fffd0f48ff7 com.apple.vision.FaceCore (3.3.2 - 3.3.2) <9391D5A3-738C-3136-9D07-518CB43DBADA> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fffd229f000 - 0x7fffd229ffff libmetal_timestamp.dylib (600.0.49.9) <E5EED927-1671-3390-BCBB-D76201D63C73> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x7fffd2570000 - 0x7fffd258cfff com.apple.GenerationalStorage (2.0 - 267.1) <3DE1C580-D089-362D-8582-8DE68A3C5F13> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fffd2c9d000 - 0x7fffd2d13ff3 com.apple.Heimdal (4.0 - 2.0) <8F9C9041-66D5-36C9-8A4C-1658035C311D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fffd332e000 - 0x7fffd3335ffb com.apple.IOAccelerator (311.14 - 311.14) <278124AF-02DC-3785-9FA9-14EDB8E5FD56> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fffd3337000 - 0x7fffd334bff7 com.apple.IOPresentment (1.0 - 29.10) <30DF04EE-10E2-353F-845F-A97B87DF3207> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fffd334c000 - 0x7fffd336efff com.apple.IconServices (74.4 - 74.4) <218DDD05-35F4-3833-B98D-471ED0EBC031> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fffd340a000 - 0x7fffd341aff3 com.apple.IntlPreferences (2.0 - 216) <77C9C2E7-EF9F-34BB-A5E3-B8BEA4226B5F> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fffd3455000 - 0x7fffd360cfff com.apple.LanguageModeling (1.0 - 123.2.5) <A8CA965F-0399-310D-91C3-B93DDDE9A442> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fffd3c7c000 - 0x7fffd3c7ffff com.apple.Mangrove (1.0 - 1) <98814966-FD65-302B-B47E-00928DC34E5C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fffd3f2d000 - 0x7fffd3fa6ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <C323FC94-FFA5-3EE6-B2AC-7E61EA92F304> /System/Library/PrivateFrameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fffd410a000 - 0x7fffd4118fff com.apple.MobileKeyBag (2.0 - 1.0) <D0983DB7-EF9D-3E19-A084-21319ECE5846> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fffd4129000 - 0x7fffd4151ff7 com.apple.MultitouchSupport.framework (368.16 - 368.16) <9E602B4A-22CD-3CF3-B284-78D5123C9AE8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fffd4203000 - 0x7fffd420efff com.apple.NetAuth (6.2 - 6.2) <97F487D6-8089-31A8-B68C-6C1EAC6ED1B5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fffd4ae6000 - 0x7fffd4b27ff3 com.apple.PerformanceAnalysis (1.148.3 - 148.3) <4E468BC7-F863-3674-909D-417231EB8C28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fffd520f000 - 0x7fffd5229fff com.apple.ProtocolBuffer (1 - 249.1) <A1F1B0F3-078F-378F-A9A9-0DEEA70E816A> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fffd522a000 - 0x7fffd5239ff7 com.apple.QuickLookThumbnailing (1.0 - 1) <173EE873-1700-3FCA-9782-C060FBB5BCAD> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fffd5242000 - 0x7fffd5265ff3 com.apple.RemoteViewServices (2.0 - 124) <6B967FDA-6591-302C-BA0A-76C4856E584E> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fffd5f2f000 - 0x7fffd5f32fff com.apple.SecCodeWrapper (4.0 - 307.50.21) <F8E957B2-D3F0-3B73-B38C-AE8868F00939> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fffd5fc1000 - 0x7fffd604efff com.apple.Sharing (696.2.67 - 696.2.67) <F681EE28-153F-3216-97A6-6F5E4148AB2E> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fffd606f000 - 0x7fffd62d5feb com.apple.SkyLight (1.600.0 - 170.3) <38AC05EF-3A9E-3E3E-9849-04E0223DF7B9> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fffd64b4000 - 0x7fffd64c0ff7 com.apple.SpeechRecognitionCore (3.3.2 - 3.3.2) <684BD1EA-8268-331C-A5A9-080EB375C658> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fffd6bac000 - 0x7fffd6c20fdf com.apple.Symbolication (62048.1) <1A30ED19-7532-3F46-9DD3-9879A973D0CF> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fffd705f000 - 0x7fffd7065ff7 com.apple.TCC (1.0 - 1) <911B534B-4AC7-34E4-935E-E42ECD008CBC> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fffd70f1000 - 0x7fffd71b7ff7 com.apple.TextureIO (2.8 - 2.8) <3D61E533-4156-3B21-B7ED-CB823E680DFC> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fffd722d000 - 0x7fffd73bdff3 com.apple.UIFoundation (1.0 - 490.7) <2A3063FE-1790-3510-8A0E-AEC581D42B7E> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fffd7e8c000 - 0x7fffd7f4cfff com.apple.ViewBridge (283 - 283) <25A635B3-C87C-3D3A-ADF3-539713FA1048> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fffd8397000 - 0x7fffd839dfff com.apple.XPCService (2.0 - 1) <4B28B225-2105-33F4-9ED0-F04288FF4FB1> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fffd846e000 - 0x7fffd8470ffb com.apple.loginsupport (1.0 - 1) <F3140B97-12C3-35A7-9D3D-43DA2D13C113> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fffd84c5000 - 0x7fffd84e0ff7 libCRFSuite.dylib (34) <F78B7F5F-0B4F-35C6-AA2F-84EE9CB22137> /usr/lib/libCRFSuite.dylib
0x7fffd84e1000 - 0x7fffd84ecfff libChineseTokenizer.dylib (21) <0886E908-A825-36AF-B94B-2361FD8BC2A1> /usr/lib/libChineseTokenizer.dylib
0x7fffd857e000 - 0x7fffd857fff3 libDiagnosticMessagesClient.dylib (102) <84A04D24-0E60-3810-A8C0-90A65E2DF61A> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fffd8580000 - 0x7fffd8793fff libFosl_dynamic.dylib (16.39) <E22A4243-D148-3C74-BA15-2D906A3D1F9E> /usr/lib/libFosl_dynamic.dylib
0x7fffd87af000 - 0x7fffd87b6fff libMatch.1.dylib (27) <70D4BD2A-9383-37F2-B0D6-9B592D236601> /usr/lib/libMatch.1.dylib
0x7fffd87b7000 - 0x7fffd87b7fff libOpenScriptingUtil.dylib (172) <90743888-C1E8-34E3-924E-1A754B2B63B9> /usr/lib/libOpenScriptingUtil.dylib
0x7fffd87b8000 - 0x7fffd87bcffb libScreenReader.dylib (477.40.6) <CBE6420C-EF60-3ACD-A0B6-7CBE936BA3B8> /usr/lib/libScreenReader.dylib
0x7fffd87bd000 - 0x7fffd87beffb libSystem.B.dylib (1238.60.2) <F18AC1E7-C6F1-34B1-8069-BE571B3231D4> /usr/lib/libSystem.B.dylib
0x7fffd882a000 - 0x7fffd8855ff3 libarchive.2.dylib (41.70.1) <A3FA7D6E-3D68-3524-8B48-EB2ECA44B13B> /usr/lib/libarchive.2.dylib
0x7fffd8856000 - 0x7fffd88d2fc7 libate.dylib (1.12.13) <D0767875-D02E-3377-84D8-5F174C27BEA9> /usr/lib/libate.dylib
0x7fffd88d6000 - 0x7fffd88d6ff3 libauto.dylib (187) <34388D0B-C539-3C1B-9408-2BC152162E43> /usr/lib/libauto.dylib
0x7fffd88d7000 - 0x7fffd88e7ff3 libbsm.0.dylib (34) <20084796-B04D-3B35-A003-EA11459557A9> /usr/lib/libbsm.0.dylib
0x7fffd88e8000 - 0x7fffd88f6ff7 libbz2.1.0.dylib (38) <ADFA329A-DCE7-356D-8F09-A3168DFC6610> /usr/lib/libbz2.1.0.dylib
0x7fffd88f7000 - 0x7fffd894dff7 libc++.1.dylib (307.5) <0B43BB5D-E6EB-3464-8DE9-B41AC8ED9D1C> /usr/lib/libc++.1.dylib
0x7fffd894e000 - 0x7fffd8977ff7 libc++abi.dylib (307.4) <BC271AD3-831B-362A-9DA7-E8C51F285FE4> /usr/lib/libc++abi.dylib
0x7fffd8978000 - 0x7fffd8988ffb libcmph.dylib (6) <2B5D405E-2D0B-3320-ABD6-622934C86ABE> /usr/lib/libcmph.dylib
0x7fffd8989000 - 0x7fffd899ffcf libcompression.dylib (39) <F2726F95-F54E-3B21-BCB5-F7151DEFDC2F> /usr/lib/libcompression.dylib
0x7fffd89a0000 - 0x7fffd89a0ff7 libcoretls.dylib (121.50.4) <64B1001E-10F6-3542-A3B2-C4B49F51817F> /usr/lib/libcoretls.dylib
0x7fffd89a1000 - 0x7fffd89a2ff3 libcoretls_cfhelpers.dylib (121.50.4) <1A10303E-5EB0-3C7C-9165-021FCDFD934D> /usr/lib/libcoretls_cfhelpers.dylib
0x7fffd8cdf000 - 0x7fffd8d32ff7 libcups.2.dylib (450) <9950BFCB-7882-33C9-9ECF-CE66773C5657> /usr/lib/libcups.2.dylib
0x7fffd8d86000 - 0x7fffd8d8dff3 libdscsym.dylib (148.3) <EF99B991-18D9-3A73-BE88-4DC55F036DEF> /usr/lib/libdscsym.dylib
0x7fffd8daf000 - 0x7fffd8daffff libenergytrace.dylib (15) <A1B040A2-7977-3097-9ADF-34FF181EB970> /usr/lib/libenergytrace.dylib
0x7fffd8dbf000 - 0x7fffd8dc4ff7 libheimdal-asn1.dylib (498.50.8) <A40E3196-235E-34CE-AD9A-8D1AFC5DE004> /usr/lib/libheimdal-asn1.dylib
0x7fffd8dc5000 - 0x7fffd8eb7ff7 libiconv.2.dylib (50) <42125B35-81D7-3FC4-9475-A26DBE10884D> /usr/lib/libiconv.2.dylib
0x7fffd8eb8000 - 0x7fffd90ddffb libicucore.A.dylib (57166.0.1) <CCD2ED24-3071-383B-925D-8D763BB12A6F> /usr/lib/libicucore.A.dylib
0x7fffd90e3000 - 0x7fffd90e4fff liblangid.dylib (126) <2085E7A7-9A34-3735-87F4-F174EF8EABF0> /usr/lib/liblangid.dylib
0x7fffd90e5000 - 0x7fffd90feffb liblzma.5.dylib (10) <44BD0279-99DD-36B5-8A6E-C11432E2098D> /usr/lib/liblzma.5.dylib
0x7fffd90ff000 - 0x7fffd9115ff7 libmarisa.dylib (5) <9030D214-5D0F-30CB-AC03-902C63909362> /usr/lib/libmarisa.dylib
0x7fffd9116000 - 0x7fffd93beff7 libmecabra.dylib (744.8) <D429FCC9-42A4-38B3-8784-44024BC859EF> /usr/lib/libmecabra.dylib
0x7fffd93f1000 - 0x7fffd946bff3 libnetwork.dylib (856.60.1) <191E99F5-4723-3180-8013-02AF2F9AE4B8> /usr/lib/libnetwork.dylib
0x7fffd946c000 - 0x7fffd983e047 libobjc.A.dylib (709.1) <70614861-0340-32E2-85ED-FE65759CDFFA> /usr/lib/libobjc.A.dylib
0x7fffd9841000 - 0x7fffd9845fff libpam.2.dylib (21.30.1) <71EB0D88-DE84-3C8D-A2C5-58AA282BC5BC> /usr/lib/libpam.2.dylib
0x7fffd9846000 - 0x7fffd9877fff libpcap.A.dylib (67.60.1) <F6BC6ED6-AEE4-3520-B248-0C342636E2B0> /usr/lib/libpcap.A.dylib
0x7fffd9894000 - 0x7fffd98b0ffb libresolv.9.dylib (64) <A244AE4C-00B0-396C-98FF-97FE4DB3DA30> /usr/lib/libresolv.9.dylib
0x7fffd98b1000 - 0x7fffd98eafff libsandbox.1.dylib (592.70.1) <9C428C49-9D9A-3F9F-9573-BF5202D1F933> /usr/lib/libsandbox.1.dylib
0x7fffd98fe000 - 0x7fffd98ffff3 libspindump.dylib (231.3) <C7CEEB64-06F4-3ACA-AAC1-30ECA909501A> /usr/lib/libspindump.dylib
0x7fffd9900000 - 0x7fffd9a4eff7 libsqlite3.dylib (254.8) <1ECF7DF7-7A07-3B4B-A63B-F4EFF6BC7ACF> /usr/lib/libsqlite3.dylib
0x7fffd9b43000 - 0x7fffd9b50fff libxar.1.dylib (357) <69547C64-E811-326F-BBED-490C6361BDCB> /usr/lib/libxar.1.dylib
0x7fffd9b51000 - 0x7fffd9c40fff libxml2.2.dylib (30.17) <D4C3E467-37C6-34DE-8A1B-E7BFC29985E9> /usr/lib/libxml2.2.dylib
0x7fffd9c41000 - 0x7fffd9c6afff libxslt.1.dylib (15.9) <00735AD5-B62D-3E83-86AC-5533E4E2B102> /usr/lib/libxslt.1.dylib
0x7fffd9c6b000 - 0x7fffd9c7cff3 libz.1.dylib (67) <46E3FFA2-4328-327A-8D34-A03E20BFFB8E> /usr/lib/libz.1.dylib
0x7fffd9c8b000 - 0x7fffd9c8fff7 libcache.dylib (79) <093A4DAB-8385-3D47-A350-E20CB7CCF7BF> /usr/lib/system/libcache.dylib
0x7fffd9c90000 - 0x7fffd9c9afff libcommonCrypto.dylib (60092.50.5) <8A64D1B0-C70E-385C-92F0-E669079FDA90> /usr/lib/system/libcommonCrypto.dylib
0x7fffd9c9b000 - 0x7fffd9ca2fff libcompiler_rt.dylib (62) <55D47421-772A-32AB-B529-1A46C2F43B4D> /usr/lib/system/libcompiler_rt.dylib
0x7fffd9ca3000 - 0x7fffd9cabfff libcopyfile.dylib (138) <819BEA3C-DF11-3E3D-A1A1-5A51C5BF1961> /usr/lib/system/libcopyfile.dylib
0x7fffd9cac000 - 0x7fffd9d2ffdf libcorecrypto.dylib (442.50.19) <65D7165E-2E71-335D-A2D6-33F78E2DF0C1> /usr/lib/system/libcorecrypto.dylib
0x7fffd9d30000 - 0x7fffd9d61fff libdispatch.dylib (703.50.37) <6582BAD6-ED27-3B30-B620-90B1C5A4AE3C> /usr/lib/system/libdispatch.dylib
0x7fffd9d62000 - 0x7fffd9d67ffb libdyld.dylib (433.5) <9B2AC56D-107C-3541-A127-9094A751F2C9> /usr/lib/system/libdyld.dylib
0x7fffd9d68000 - 0x7fffd9d68ffb libkeymgr.dylib (28) <7AA011A9-DC21-3488-BF73-3B5B14D1FDD6> /usr/lib/system/libkeymgr.dylib
0x7fffd9d69000 - 0x7fffd9d75fff libkxld.dylib (3789.70.16) <BD02EF3F-6E09-3A64-AB21-553D5B1D2859> /usr/lib/system/libkxld.dylib
0x7fffd9d76000 - 0x7fffd9d76fff liblaunch.dylib (972.70.1) <B856ABD2-896E-3DE0-B2C8-146A6AF8E2A7> /usr/lib/system/liblaunch.dylib
0x7fffd9d77000 - 0x7fffd9d7cff3 libmacho.dylib (898) <17D5D855-F6C3-3B04-B680-E9BF02EF8AED> /usr/lib/system/libmacho.dylib
0x7fffd9d7d000 - 0x7fffd9d7fff3 libquarantine.dylib (85.50.1) <12448CC2-378E-35F3-BE33-9DC395A5B970> /usr/lib/system/libquarantine.dylib
0x7fffd9d80000 - 0x7fffd9d81ffb libremovefile.dylib (45) <38D4CB9C-10CD-30D3-8B7B-A515EC75FE85> /usr/lib/system/libremovefile.dylib
0x7fffd9d82000 - 0x7fffd9d9aff7 libsystem_asl.dylib (349.50.5) <096E4228-3B7C-30A6-8B13-EC909A64499A> /usr/lib/system/libsystem_asl.dylib
0x7fffd9d9b000 - 0x7fffd9d9bff7 libsystem_blocks.dylib (67) <10DC5404-73AB-35B3-A277-A8AFECB476EB> /usr/lib/system/libsystem_blocks.dylib
0x7fffd9d9c000 - 0x7fffd9e29fef libsystem_c.dylib (1158.50.2) <E5AE5244-7D0C-36AC-8BB6-C7AE7EA52A4B> /usr/lib/system/libsystem_c.dylib
0x7fffd9e2a000 - 0x7fffd9e2dffb libsystem_configuration.dylib (888.60.2) <BECC01A2-CA8D-31E6-BCDF-D452965FA976> /usr/lib/system/libsystem_configuration.dylib
0x7fffd9e2e000 - 0x7fffd9e31fff libsystem_coreservices.dylib (41.4) <7D26DE79-B424-3450-85E1-F7FAB32714AB> /usr/lib/system/libsystem_coreservices.dylib
0x7fffd9e32000 - 0x7fffd9e4afff libsystem_coretls.dylib (121.50.4) <EC6FCF07-DCFB-3A03-9CC9-6DD3709974C6> /usr/lib/system/libsystem_coretls.dylib
0x7fffd9e4b000 - 0x7fffd9e51fff libsystem_dnssd.dylib (765.50.9) <CC960215-0B1B-3822-A13A-3DDE96FA796F> /usr/lib/system/libsystem_dnssd.dylib
0x7fffd9e52000 - 0x7fffd9e7bff7 libsystem_info.dylib (503.50.4) <611DB84C-BF70-3F92-8702-B9F28A900920> /usr/lib/system/libsystem_info.dylib
0x7fffd9e7c000 - 0x7fffd9e9eff7 libsystem_kernel.dylib (3789.70.16) <34B1F16C-BC9C-3C5F-9045-0CAE91CB5914> /usr/lib/system/libsystem_kernel.dylib
0x7fffd9e9f000 - 0x7fffd9ee6fe7 libsystem_m.dylib (3121.6) <86D499B5-BBDC-3D3B-8A4E-97AE8E6672A4> /usr/lib/system/libsystem_m.dylib
0x7fffd9ee7000 - 0x7fffd9f05ff7 libsystem_malloc.dylib (116.50.8) <A3D15F17-99A6-3367-8C7E-4280E8619C95> /usr/lib/system/libsystem_malloc.dylib
0x7fffd9f06000 - 0x7fffd9f5fffb libsystem_network.dylib (856.60.1) <369D0221-56CA-3C3E-9EDE-94B41CAE77B7> /usr/lib/system/libsystem_network.dylib
0x7fffd9f60000 - 0x7fffd9f69ff3 libsystem_networkextension.dylib (563.60.2) <B021F2B3-8A75-3633-ABB0-FC012B8E9B0C> /usr/lib/system/libsystem_networkextension.dylib
0x7fffd9f6a000 - 0x7fffd9f73ff3 libsystem_notify.dylib (165.20.1) <B8160190-A069-3B3A-BDF6-2AA408221FAE> /usr/lib/system/libsystem_notify.dylib
0x7fffd9f74000 - 0x7fffd9f7cfe7 libsystem_platform.dylib (126.50.8) <897462FD-B318-321B-A554-E61982630F7E> /usr/lib/system/libsystem_platform.dylib
0x7fffd9f7d000 - 0x7fffd9f87ff7 libsystem_pthread.dylib (218.60.3) <B8FB5E20-3295-39E2-B5EB-B464D1D4B104> /usr/lib/system/libsystem_pthread.dylib
0x7fffd9f88000 - 0x7fffd9f8bff7 libsystem_sandbox.dylib (592.70.1) <4B92EC49-ACD0-36AE-B07A-A2B8152EAF9D> /usr/lib/system/libsystem_sandbox.dylib
0x7fffd9f8c000 - 0x7fffd9f8dff3 libsystem_secinit.dylib (24.50.4) <F78B847B-3565-3E4B-98A6-F7AD40392E2D> /usr/lib/system/libsystem_secinit.dylib
0x7fffd9f8e000 - 0x7fffd9f95ffb libsystem_symptoms.dylib (532.50.47) <3390E07C-C1CE-348F-ADBD-2C5440B45EAA> /usr/lib/system/libsystem_symptoms.dylib
0x7fffd9f96000 - 0x7fffd9fa9ff7 libsystem_trace.dylib (518.70.1) <AC63A7FE-50D9-3A30-96E6-F6B7FF16E465> /usr/lib/system/libsystem_trace.dylib
0x7fffd9faa000 - 0x7fffd9fafffb libunwind.dylib (35.3) <3D50D8A8-C460-334D-A519-2DA841102C6B> /usr/lib/system/libunwind.dylib
0x7fffd9fb0000 - 0x7fffd9fd9ff7 libxpc.dylib (972.70.1) <BF896DF0-D8E9-31A8-A4B3-01120BFEEE52> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 1
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 25649757
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=367.4M resident=0K(0%) swapped_out_or_unallocated=367.4M(100%)
Writable regions: Total=496.9M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=496.9M(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Activity Tracing 256K 2
Dispatch continuations 16.0M 2
Kernel Alloc Once 8K 2
MALLOC 152.4M 43
MALLOC guard page 48K 10
Memory Tag 255 585.8M 169
STACK GUARD 56.1M 26
Stack 149.7M 26
VM_ALLOCATE 116.0M 161
__DATA 30.8M 250
__IMAGE 528K 2
__LINKEDIT 119.1M 13
__TEXT 248.3M 252
__UNICODE 556K 2
mapped file 53.9M 9
shared memory 372K 10
=========== ======= =======
TOTAL 1.5G 963
```
|
https://github.com/electron/electron/issues/10571
|
https://github.com/electron/electron/pull/10620
|
15b0878a176bec6ddef1a411f177900ff742f13b
|
18589a498cad9e8d8f31cb9b1b36c6c00d255ef1
| 2017-09-21T18:07:07Z |
c++
| 2017-09-27T03:11:27Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,539 |
["atom/browser/ui/cocoa/atom_touch_bar.h", "atom/browser/ui/cocoa/atom_touch_bar.mm"]
|
TouchBar: Entries of TouchBarScrubber are all cropped
|
* Electron version: 1.7.7
* Operating system: macOS
### Expected behavior
Entries of `TouchBarScrubber` show entirely
### Actual behavior
Each `ScrubberItem` shows with a "..."
### How to reproduce
Just create a new `TouchBarScrubber` and fill in some `ScrubberItem` and all entries will get a "...":

|
https://github.com/electron/electron/issues/10539
|
https://github.com/electron/electron/pull/11038
|
5383b4809fa406c2a15ab260b242472c45919c16
|
43aa555d647d181265bde59570e2fdd7704cf83f
| 2017-09-17T08:58:23Z |
c++
| 2017-11-07T07:18:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,521 |
["atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm"]
|
hiddenInset and vibrancy cause a invisible/low-alpha titlebar on 10.13
|
* Electron version: 1.7.6
* Operating system: MacOS High Sierra GM
### Expected behavior
Title bar should not be invisible

### Actual behavior
Title bar is invisible
### How to reproduce
```
mainWindow = new BrowserWindow({
vibrancy: 'light',
titleBarStyle: 'hiddenInset',
width: 800,
height: 600
})
```
```
$ git clone [email protected]:gerges/electron-quick-start.git -b issue/invisible-titlebar
$ npm install
$ npm run start
```
|
https://github.com/electron/electron/issues/10521
|
https://github.com/electron/electron/pull/11886
|
d1d50a4c92df3cac2591d0a8aa249778a7622dc2
|
ae65938752b3114c0a0685ec50b4ca88e057830a
| 2017-09-14T16:22:24Z |
c++
| 2018-02-12T18:38:37Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,515 |
["docs/api/desktop-capturer.md"]
|
Desktop audio capture does not work on Mac and Linux
|
* Electron version: 1.6.2, 1.6.5, 1.7.6, 2.0.2, 3.x, 4.0.5
* Operating system: Mac OS X Sierra, Linux (Debian Jessie)
### Expected behavior
Given the defined [DesktopCapture API](https://github.com/electron/electron/blob/master/docs/api/desktop-capturer.md) for capturing both audio and video for the entire desktop, we should get a working audio stream on Windows, Linux and Mac.
### Actual behaviour
Electron version 4.0.5: On Mac and Linux, the error callback triggers with the respective messages:
```
getUserMediaError: DOMException: Could not start audio source // Mac
Failed to query stereo recording // Linux
```
Electron Version 1.7.6: On Mac and Linux, the error callback triggers with the error:
```
NavigatorUserMediaError
constraintName: ""
message: ""
name: "TrackStartError"
```
Electron Version 1.6.2 and 1.6.5: On Mac and Linux, the video stream is received successfully, albeit, with no audio.
Below are the constraints defined as per the DesktopCapture API:
```
const constraints = {
audio: {
mandatory: {
chromeMediaSource: 'desktop'
}
},
video: {
mandatory: {
chromeMediaSource: 'desktop'
}
}
}
```
Please note: on Windows, the audio capture works correctly.
### How to reproduce
```
git clone https://github.com/mhashmi/electron-desktop-capture
cd electron-desktop-capture
npm install
npm start
```
|
https://github.com/electron/electron/issues/10515
|
https://github.com/electron/electron/pull/17738
|
a7e22c78cfb9e049621fa8ea090ceabb7b22a510
|
b3d8db6996ba0f39015ecdf3e2f69375468f4d8e
| 2017-09-14T08:43:17Z |
c++
| 2019-04-16T17:49:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,513 |
["atom/browser/api/atom_api_desktop_capturer.cc"]
|
desktopCapturer: Windows doesn't correctly show primary and secondary display.
|
* Electron version: 1.7.5
* Operating system: WIndows
### Expected behavior
On PC with 2 monitors, desktopCapturer.getSources return 2 screens. When change main screen, it show with title "Screen 1" secondary screen.
### Actual behavior
Method should correctly handle main screen switch and display with title "Screen 1" main screen.
### How to reproduce
[desktopCapturerScreenNumIssue.zip](https://github.com/electron/electron/files/1302236/desktopCapturerScreenNumIssue.zip)
|
https://github.com/electron/electron/issues/10513
|
https://github.com/electron/electron/pull/11664
|
868e792572466ccb33b3a27e1472e87b53173096
|
0207aebad1b9ad5c2195299bb1fa7437ba39f683
| 2017-09-14T08:13:56Z |
c++
| 2018-01-24T05:38:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,477 |
["atom/common/platform_util_mac.mm"]
|
`shell.openItem` should activate the opened app
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.7.7
* Operating system: macOS 10.12.6
### Expected behavior
For example, if I ask it to open a path to a directory, it should open it in Finder and focus the Finder window.
### Actual behavior
It opens the Finder window in the background and my app window is still focused.
### How to reproduce
```js
shell.openItem('path/to/some/dir/');
```
---
Focusing the opened app is expected behavior on macOS and should at least be an option.
The `shell.openExternal` method has this, so it's clear you agree. We just need the behavior/option added to this method too.
|
https://github.com/electron/electron/issues/10477
|
https://github.com/electron/electron/pull/10552
|
fa444dd029ca3f9d930a5f3cb74c43dc749da178
|
fb6a4febb04df6a79ff717c992a374294da93900
| 2017-09-09T19:14:20Z |
c++
| 2017-09-20T02:00:40Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,464 |
["atom/browser/api/atom_api_menu.cc", "atom/browser/api/atom_api_menu.h", "atom/browser/api/atom_api_menu_views.cc", "atom/browser/api/atom_api_web_contents.cc", "docs/api/menu.md", "lib/browser/api/menu.js", "lib/browser/api/web-contents.js", "spec/api-menu-spec.js"]
|
(v1.8.x) Context menu of flash object broken
|
Hello folks,
Doing a right click on a flash object opens up a context menu as expected, but clicking on the entries has no effect. Can't change quality of a flash game for example.
It works fine in v1.7.x.
The attached .zip contains the newest pepper based flash plugin, a main.js and a package.json that might help you reproduce the issue.
System:
Win7 x64
Electron v1.8.x
Pepper Flash Plugin v26.0.0.151 x64
[flash-context-menu.zip](https://github.com/electron/electron/files/1285786/flash-context-menu.zip)
|
https://github.com/electron/electron/issues/10464
|
https://github.com/electron/electron/pull/11264
|
85ef42d99e12578010e86f7ab52c791a64a41f22
|
a6228b97cd5d25c28ab7cee2711335d01a5eeb5b
| 2017-09-07T18:46:23Z |
c++
| 2017-12-20T10:37:44Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,442 |
["atom/browser/ui/cocoa/atom_touch_bar.mm"]
|
[macOS] App crashed when call `SetEscapeTouchBarItem`
|
* Electron version: 1.6.8 ~ 1.7.6
* Operating system: macOS 10.12.1
### Expected behavior
Shouldn't crash app when called `SetEscapeTouchBarItem` native method.
### Actual behavior
https://github.com/jhen0409/react-native-debugger/issues/81#issuecomment-302939005 provided the error messages, and seems another one have same problem:
```
Crashing on exception: -[NSTouchBar setEscapeKeyReplacementItemIdentifier:]: unrecognized selector sent to instance 0x600000288570
Application Specific Backtrace 1:
0 CoreFoundation 0x00007fff7f35948b __exceptionPreprocess + 171
1 libobjc.A.dylib 0x00007fff93c4ecad objc_exception_throw + 48
2 CoreFoundation 0x00007fff7f3dac94 -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
3 CoreFoundation 0x00007fff7f2cbb55 ___forwarding___ + 1061
4 CoreFoundation 0x00007fff7f2cb6a8 _CF_forwarding_prep_0 + 120
5 Electron Framework 0x000000010b33162c _ZN17certificate_trust20ShowCertificateTrustEPN4atom12NativeWindowERK13scoped_refptrIN3net15X509CertificateEERKNSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEERKN4base8CallbackIFvvELNSI_8internal8CopyModeE1ELNSL_10RepeatModeE1EEE + 8028
6 Electron Framework 0x000000010b30e721 _ZN4atom15NativeWindowMac12SetStyleMaskEbm + 1601
7 Electron Framework 0x000000010b3132b8 _ZN4atom15NativeWindowMac21SetEscapeTouchBarItemERKN4mate20PersistentDictionaryE + 40
8 Electron Framework 0x000000010b2e8634 _ZN4atom3api6Window21SetEscapeTouchBarItemERKN4mate20PersistentDictionaryE + 20
9 Electron Framework 0x000000010b275a3e _ZN4base8internal7InvokerINS0_9BindStateIMNS_11CommandLineEFvRKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEJNS0_17UnretainedWrapperIS3_EEEEEFvSC_EE3RunEPNS0_13BindStateBaseESC_ + 206
10 Electron Framework 0x000000010b2759ff _ZN4base8internal7InvokerINS0_9BindStateIMNS_11CommandLineEFvRKNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEJNS0_17UnretainedWrapperIS3_EEEEEFvSC_EE3RunEPNS0_13BindStateBaseESC_ + 143
11 Electron Framework 0x000000010b27e12f _ZN4base8internal7InvokerINS0_9BindStateIMN4atom3api3AppEFvRKNS_8FilePathEEJEEEFvPS5_S8_EE3RunEPNS0_13BindStateBaseEOSC_S8_ + 79
12 Electron Framework 0x000000010b2f0cb0 _ZN4base8internal7InvokerINS0_9BindStateIMN4atom3api6WindowEFvRKN4mate20PersistentDictionaryEEJEEEFvPS5_S9_EE3RunEPNS0_13BindStateBaseEOSD_S9_ + 32
13 Electron Framework 0x000000010b272961 _ZN4atom3api3App11GetFileIconERKN4base8FilePathEPN4mate9ArgumentsE + 977
14 Electron Framework 0x000000010b2df23c _ZN4mate8internal10DispatcherIFvPN4atom3api11WebContentsERKNS2_13SetSizeParamsEEE18DispatchToCallbackERKN2v820FunctionCallbackInfoINSB_5ValueEEE + 460
15 Electron Framework 0x000000010b2f09dc _ZN4mate8internal10DispatcherIFvPN4atom3api6WindowERKNS_20PersistentDictionaryEEE18DispatchToCallbackERKN2v820FunctionCallbackInfoINSB_5ValueEEE + 124
16 libnode.dylib 0x000000010f87c025 _ZN2v88internal6StrDupEPKc + 565
17 libnode.dylib 0x000000010f92cfe8 _ZNK2v88internal8compiler17BranchElimination21ControlPathConditionseqERKS3_ + 4184
18 libnode.dylib 0x000000010f92c541 _ZNK2v88internal8compiler17BranchElimination21ControlPathConditionseqERKS3_ + 1457
19 ??? 0x000029ae970043a7 0x0 + 45829834425255
20 ??? 0x000029ae971dd77f 0x0 + 45829836363647
21 ??? 0x000029ae971dd638 0x0 + 45829836363320
22 ??? 0x000029ae971dc55e 0x0 + 45829836359006
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 com.apple.AppKit 0x00007fff7d1c0836 -[NSApplication _crashOnException:] + 109
1 com.apple.AppKit 0x00007fff7d1c0768 -[NSApplication reportException:] + 917
2 com.apple.AppKit 0x00007fff7d29599f uncaughtErrorProc + 158
3 com.apple.CoreFoundation 0x00007fff7f3d7d2a __handleUncaughtException + 746
4 libobjc.A.dylib 0x00007fff93c50f15 _objc_terminate() + 94
5 libc++abi.dylib 0x00007fff93142d69 std::__terminate(void (*)()) + 8
6 libc++abi.dylib 0x00007fff931427de __cxa_throw + 121
7 libobjc.A.dylib 0x00007fff93c4edd6 objc_exception_throw + 345
8 com.apple.CoreFoundation 0x00007fff7f3dac94 -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
9 com.apple.CoreFoundation 0x00007fff7f2cbb55 ___forwarding___ + 1061
10 com.apple.CoreFoundation 0x00007fff7f2cb6a8 _CF_forwarding_prep_0 + 120
11 com.github.electron.framework 0x000000010b33162c 0x10b265000 + 837164
12 com.github.electron.framework 0x000000010b30e721 0x10b265000 + 694049
13 com.github.electron.framework 0x000000010b3132b8 atom::NativeWindowMac::SetEscapeTouchBarItem(mate::PersistentDictionary const&) + 40
14 com.github.electron.framework 0x000000010b2e8634 atom::api::Window::SetEscapeTouchBarItem(mate::PersistentDictionary const&) + 20
```
### How to reproduce
[Here](https://github.com/jhen0409/react-native-debugger/blob/master/app/utils/devMenu.js#L28) is the app code that used Touch Bar API, it will called `_setEscapeTouchBarItem(null)` I tracked, but __it works as expected for me even CI is green__, so I guess maybe it only happened on some macOS versions or settings.
/cc @MarshallOfSound and @urikphytech @danishmughal @dannyvassallo @Manuelandro
|
https://github.com/electron/electron/issues/10442
|
https://github.com/electron/electron/pull/10725
|
19ac2179fb365525baeecbae5e01b72b5b27db78
|
4ffb6c5f75c9457389131709e544a57b72f9b089
| 2017-09-05T09:08:27Z |
c++
| 2017-10-10T06:07:04Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,424 |
["shell/browser/native_window_mac.mm"]
|
BrowserWindow with customButtonsOnHover and frame:false no longer rounds the corners on Mac
|
* Electron version: 1.7.5
* Operating system: macOS 10.12.6
### Expected behavior
The corners should be rounded like they were in 1.6.x
### Actual behavior
The browser windows corners are no longer rounded when running with electron 1.7.5
### How to reproduce
```
git clone https://github.com/emilylaguna/electron-quick-start.git
cd electron-quick-start
npm install
./node_modules/.bin/electron .
```
|
https://github.com/electron/electron/issues/10424
|
https://github.com/electron/electron/pull/26901
|
b4c1e54ed38d8d0ab6e3edbf6370e589bf0f4c7f
|
28ae68d66cdc1f8149437793b1f6c732c4b9108f
| 2017-09-01T21:31:43Z |
c++
| 2020-12-11T19:03:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,398 |
["atom/renderer/atom_sandboxed_renderer_client.cc", "lib/sandboxed_renderer/init.js"]
|
Mixed mode sandbox breaks right-click context menu in devtools
|
* Electron version: 1.7.6
* Operating system: macOS 10.12, Windows 10
### Expected behavior
Right clicking should open context menu in devtools
### Actual behavior
Right clicking does not open the context menu in devtools
### How to reproduce
- `open Electron.app --args --enable-mixed-sandbox`
- open devtools
- right click in the source tab for example
|
https://github.com/electron/electron/issues/10398
|
https://github.com/electron/electron/pull/11933
|
67f052a6e15c2d3cb1f581d2f6aa31eb05e2de98
|
9d1527b1df4d68eeb1333a2546990d24587906d8
| 2017-08-30T09:26:33Z |
c++
| 2018-03-22T07:15:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,379 |
["docs/api/ipc-renderer.md"]
|
Error: Removing all listeners from ipcRenderer will make Electron internals stop working
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version:
* Operating system:
### Expected behavior
`ipcRenderer.removeAllListeners();` command should work as in documentation `removeAllListeners` parameter is optional here : https://electron.atom.io/docs/api/ipc-renderer/#ipcrendererremovealllistenerschannel
### Actual behavior
When I try to call `ipcRenderer.removeAllListeners();` It is giving me Error as : `Error: Removing all listeners from ipcRenderer will make Electron internals stop working. Please specify a event name at EventEmitter.ipcRenderer.removeAllListeners`
### How to reproduce
Simply, register any listener on a working electron app view and remove it in `componentWillUnmount` it will be replicated.
|
https://github.com/electron/electron/issues/10379
|
https://github.com/electron/electron/pull/10380
|
39a366cf76d6aea9bbffc78765272c51b56e4667
|
178b39b5a8bd650660545588d977eba95554bff6
| 2017-08-29T04:48:01Z |
c++
| 2017-08-29T20:22:41Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,372 |
["docs/api/menu-item.md", "lib/browser/api/menu-item-roles.js", "lib/browser/api/menu-item.js", "lib/renderer/inspector.js"]
|
Use camelCase for MenuItem roles
|
A followup to #10271
Lowercase roles like `movetabtonewwindow` are hard to read. If there's not a technical reason that they have to be lowercase, we should use mixed case to make them more legible, e.g. `moveTabToNewWindow`. To avoid making this a breaking change, we could quietly continue to support the old lowercase style.
https://electron.atom.io/docs/api/menu-item/#roles
|
https://github.com/electron/electron/issues/10372
|
https://github.com/electron/electron/pull/11532
|
6bc7c8cc496a2bd899b2511de39f8fa1b0d7147c
|
eb89e12c5b3526259335b4e977d5a2145aaf31d3
| 2017-08-28T16:36:55Z |
c++
| 2018-01-04T17:53:58Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,335 |
["atom/browser/ui/file_dialog_mac.mm"]
|
saveDialog should list available extensions
|
* Electron version: 1.7.5
* Operating system: macOS Sierra 10.12.6
### Expected behavior
When creating a `saveDialog` with multiple extensions configured in `.filter`, the dialog should allow the user to pick an extension, like here:

### Actual behavior
There is no extension picker:

### How to reproduce
```js
const { dialog } = require('electron').remote
dialog.showSaveDialog({
filters: [
{ name: 'M3U8', extensions: ['m3u8'] },
{ name: 'PLS', extensions: ['pls'] }
]
}, filePath => {})
```
|
https://github.com/electron/electron/issues/10335
|
https://github.com/electron/electron/pull/11873
|
1657c37761a80f44239bd22adce1f3c186f2dfd3
|
647f0f3a5771285f72dbd8e83d8b6d03c8684cdc
| 2017-08-23T10:09:56Z |
c++
| 2018-02-11T04:32:08Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,311 |
["default_app/main.js"]
|
Windows: electron does not start from a folder that has a leading #
|
* Electron version: 1.7.6
* Operating system: Windows 10
### Expected behavior
Electron opens
### Actual behavior
Electron opens but does not show any contents.
### How to reproduce
1. download Electron
2. rename its folder to `# electron`
3. start it
|
https://github.com/electron/electron/issues/10311
|
https://github.com/electron/electron/pull/14940
|
596ae2c2df27a97c98976d4f954bbfe90dcb7474
|
47258f7b3d36aa747bf1e7c3954e9f6eac986609
| 2017-08-21T15:00:02Z |
c++
| 2018-10-03T15:10:22Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,274 |
["lib/browser/rpc-server.js"]
|
Uncaughtexception - Cannot read property 'close' of null at rpc-server.js:463
|
* Electron version: 1.7.3
* Operating system: Windows
### Expected behavior
No uncaught exception
### Actual behavior
Sometimes closing of new browserwindow hits this error
Cannot read property 'close' of null at EventEmitter.<anonymous> (rpc-server.js:463:39)
at emitOne (events.js:96:13)
at EventEmitter.emit (events.js:191:7)
at WebContents.<anonymous> (browser\api\web-contents.js:256:13)
at emitTwo (events.js:106:13)
at WebContents.emit (events.js:194:7)
### How to reproduce
No consistent repro steps.
|
https://github.com/electron/electron/issues/10274
|
https://github.com/electron/electron/pull/10275
|
ac6a44f0acea5726081bab903891930e5e9d2eb0
|
15db4ee4506068615a48d5e02d0915c68a253523
| 2017-08-15T21:31:44Z |
c++
| 2017-08-19T03:58:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,259 |
["docs/api/browser-window.md"]
|
The `Event.returnValue` property works while a `return` statement does not.
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.7.6
* Operating system: Windows 8.1
### Expected behavior
<!-- What do you think should happen? -->
When listening to the `beforeunload` event and trying to cancel it, "`return true;`" should cancel the window close.
### Actual behavior
<!-- What actually happens? -->
Using "`return true;`" within a callback function for the `beforeunload` event does not cancel the close while "`event.returnValue = true;`" does. In fact, `Event.returnValue` is [supposed to be deprecated](https://developer.mozilla.org/en-US/docs/Web/API/Event/returnValue).
### How to reproduce
This cancels the window close.
```js
window.addEventListener("beforeunload", function(evt) {
evt.returnValue = true;
});
```
This does not.
```js
window.addEventListener("beforeunload", function(evt) {
return true;
});
```
To quickly test this issue you can open up the developer console on any Electron app (that does not already cancel the window close) and paste the above pieces of code before attempting to close the window.
(As for why I am using `true`, [the documentation](https://github.com/electron/electron/blob/master/docs/api/browser-window.md#event-close) says it will work with any value other than `undefined`.)
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/10259
|
https://github.com/electron/electron/pull/10356
|
6a93052f7d3c9d38642c9f209c9669009425f7ef
|
87d46666484383049ebaa946b315c97ccb5d8ef8
| 2017-08-14T05:15:17Z |
c++
| 2017-08-27T03:03:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,243 |
["docs/api/browser-window.md", "shell/browser/api/electron_api_base_window.cc", "shell/browser/native_window.h", "shell/browser/native_window_mac.h", "shell/browser/native_window_mac.mm", "spec-main/api-browser-window-spec.ts"]
|
Inset option for customButtonOnHover
|
### Feature request
`customButtonsOnHover` fixes a lot of issues with drag and `pointer` styles, but my app currently uses `hidden-inset` so this setting changes the position of the buttons. I'd suggest `customButtonsOnHover` either be an option outside of `titleBarStyle` that respects `titleBarStyle`s values ('hiddenInset' or `hidden') or the addition of a `customButtonsOnHoverInset`.
As a separate note, the docs for `customButtonsOnHover` currently specify it's a Boolean type, but it's a string value.
|
https://github.com/electron/electron/issues/10243
|
https://github.com/electron/electron/pull/26789
|
1e2a2004e9684a1fc0db503db7ade3cac84cb087
|
e01b1831d96d5d68f54af879b00c617358df5372
| 2017-08-10T17:57:17Z |
c++
| 2020-12-16T05:30:39Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,240 |
["atom/browser/api/atom_api_web_contents.cc", "docs/api/web-contents.md", "spec/api-web-contents-spec.js", "vendor/native_mate"]
|
When no theme color is found the event returns #000000
|
* Electron version: 1.7.5
### Expected behavior
When a theme color is no longer present the webContents did-change-theme-color event should return `null`.
### Actual behavior
The event returns `"#000000"`.
### How to reproduce
1. Log the returned color of the webContents did-change-theme-color event.
2. Go to https://electron.atom.io which has a theme color.
3. Go to https://atom.io which does not have a theme color.
|
https://github.com/electron/electron/issues/10240
|
https://github.com/electron/electron/pull/10307
|
e6733b4b23ccad59bdb199d08ac3048d6bdb5279
|
cc9771a3d0007e3db339399ea65e4ecbef207e69
| 2017-08-10T16:22:50Z |
c++
| 2017-09-11T09:40:35Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,227 |
["atom/browser/api/atom_api_notification.cc", "atom/browser/api/atom_api_notification.h", "docs/api/notification.md"]
|
App crashes on quit when calling `Notification#show` (main process) 2 times
|
* Electron version: 1.7.4
* Operating system: MacOS
```
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000028
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [0]
VM Regions Near 0x28:
-->
__TEXT 000000010c315000-000000010c316000 [ 4K] r-x/rwx SM=COW /Applications/Station Canary.app/Contents/MacOS/Station Canary
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 com.github.electron.framework 0x000000010e8d6e0b brightray::Notification::~Notification() + 43
1 com.github.electron.framework 0x000000010e8cec4a brightray::CocoaNotification::~CocoaNotification() + 106
2 com.github.electron.framework 0x000000010e8cec79 brightray::CocoaNotification::~CocoaNotification() + 9
3 com.github.electron.framework 0x000000010e8cec8e brightray::CocoaNotification::~CocoaNotification() + 14
4 com.github.electron.framework 0x000000010e8d6c7f brightray::NotificationPresenter::~NotificationPresenter() + 63
5 com.github.electron.framework 0x000000010e8cf75b brightray::NotificationPresenterMac::~NotificationPresenterMac() + 75
6 com.github.electron.framework 0x000000010e8cf789 brightray::NotificationPresenterMac::~NotificationPresenterMac() + 9
7 com.github.electron.framework 0x000000010e8cf79e brightray::NotificationPresenterMac::~NotificationPresenterMac() + 14
8 com.github.electron.framework 0x000000010e8bdf50 brightray::BrowserClient::~BrowserClient() + 48
9 com.github.electron.framework 0x000000010e7edda9 atom::AtomBrowserClient::~AtomBrowserClient() + 137
10 com.github.electron.framework 0x000000010e7eddd9 atom::AtomBrowserClient::~AtomBrowserClient() + 9
11 com.github.electron.framework 0x000000010e7ede0e atom::AtomBrowserClient::~AtomBrowserClient() + 14
12 com.github.electron.framework 0x000000010e75b848 atom::AtomMainDelegate::~AtomMainDelegate() + 88
13 com.github.electron.framework 0x000000010e75b869 atom::AtomMainDelegate::~AtomMainDelegate() + 9
14 com.github.electron.framework 0x000000010e758b95 AtomMain + 85
15 org.efounders.BrowserXCanary 0x000000010c315f26 main + 38
16 libdyld.dylib 0x00007fffcd1f3235 start + 1
```
|
https://github.com/electron/electron/issues/10227
|
https://github.com/electron/electron/pull/10944
|
e4214a6cbe084f6e038d955ae0a61df9394cd486
|
dc8b58336357b8d92153f103e894e6328e67d757
| 2017-08-09T08:35:31Z |
c++
| 2017-10-27T23:33:30Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,132 |
["lib/browser/api/touch-bar.js"]
|
TouchBarScrubber continuous property ignored
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.7.5
* Operating system: macOS High Sierra 10.13 Beta (17A315i)
### Expected behavior
`TouchBarScrubber`'s `select` event and handler should not be called when scrolling to find the right ScrubberItem when `continuous=false`. It appears the `continuous` property is ignored or not correctly handed through to ObjC.
<!-- What do you think should happen? -->
### Actual behavior
No matter of TouchBarScrubber.continuous is true or false, the select event is sent out when moving the scrubber on the Touch Bar as if continuous was set to true native.
<!-- What actually happens? -->
### How to reproduce
I provided a [simple test project](https://github.com/alopix/electron-touchbar-scrubber-continuous-bug) with continuous=false, which does not behave as a native implementation according to [Apple](https://developer.apple.com/documentation/appkit/nsscrubber#2793489) should.
$ git clone [email protected]:alopix/electron-touchbar-scrubber-continuous-bug.git -b master
$ npm install
$ npm start || electron .
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/10132
|
https://github.com/electron/electron/pull/10133
|
768e8388d2fc93618954efc33011ebfb23a78652
|
6dfc7dc48985df385033ca2a6978cc3cc716c18e
| 2017-07-27T07:42:14Z |
c++
| 2017-07-27T17:19:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,128 |
["lib/common/asar.js", "spec/asar-spec.js"]
|
fs.readFile with 'utf8' option get an object when read an empty file in the ASAR
|
* Electron version: 1.6.11
* Operating system: macOS 10.12
When read an empty file (0 byte) that in the ASAR package, it return an object instead of the empty string. e.g.
```js
fs.readFile('docs/empty.txt', 'utf8', (err, text) => {
console.log(text);
// the text is {type: "Buffer", data: []}
// it should be empty string ''.
});
```
|
https://github.com/electron/electron/issues/10128
|
https://github.com/electron/electron/pull/10160
|
ccdff72ee40bfda3de12991dc002715595c47d92
|
72d2e176dd82dad40edfa47c6d145a29149b596f
| 2017-07-26T20:11:08Z |
c++
| 2017-08-08T01:42:15Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,105 |
["script/upload-symbols.py"]
|
MacOS symbols are not supported by Electron symbol server
|
Hi, amathew and myan from Backtrace.io. We have the following feature request.
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.11
* Operating system: MacOS
### Expected behavior
<!-- What do you think should happen? -->
User may download MacOS symbols just like Windows symbols.
### Actual behavior
<!-- What actually happens? -->
Either the original debug file or the Breakpad symbol file is downloadable through the Electron symbol server.
### How to reproduce
The following command manually downloads symbol of module XPCService through Electron symbol server. `96A2DAAC53853755AEF485A22AC4FD940` is the debug identifier (a hash of the executable's code section). The minidump generated by Breakpad embeds the module name and its debug identifier in the file so that debugger can properly match the symbol.
```
wget https://electron-symbols.githubapp.com/XPCService/96A2DAAC53853755AEF485A22AC4FD940/XPCService
```
or
```
wget https://electron-symbols.githubapp.com/XPCService/96A2DAAC53853755AEF485A22AC4FD940/XPCService.sym
```
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/10105
|
https://github.com/electron/electron/pull/16908
|
cfba59929a2e669eccd9e013384f6e22ff72df0c
|
cd9bf72ee895202071c268911e0208fbd43018cd
| 2017-07-24T19:54:15Z |
c++
| 2019-02-12T22:10:24Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,096 |
["docs/api/browser-view.md", "spec/api-browser-view-spec.js"]
|
No way to destroy a BrowserView
|
Right now when you're done with a `BrowserView` you can manually call `view.webContents.destroy()` and null out all your references, but checking the number of processes I'm still seeing an extra one.
|
https://github.com/electron/electron/issues/10096
|
https://github.com/electron/electron/pull/12274
|
c2673aa970b5256eff3b61d624ad0ff225260add
|
2681e769a66bad94718424be5a14492778ce674d
| 2017-07-23T23:00:03Z |
c++
| 2018-03-15T07:15:56Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,064 |
["atom/browser/ui/cocoa/atom_menu_controller.mm", "docs/api/menu-item.md"]
|
Add roles for standard menu items for native tabs
|
- Show Tab Bar
- Show Previous Tab
- Show Next Tab
- Move Tab to New Window
- Merge All Windows
Show Tab Bar is currently automatically shown.
* Operating system: macOS
|
https://github.com/electron/electron/issues/10064
|
https://github.com/electron/electron/pull/10271
|
c51e3c288294fac6b8137e5ef810072b2691841a
|
0694334487a10a9c29632b597874a2fada453d3a
| 2017-07-20T02:17:00Z |
c++
| 2017-09-11T08:41:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,051 |
["atom/browser/atom_browser_context.cc", "atom/browser/atom_browser_context.h", "atom/browser/net/atom_cert_verifier.cc", "atom/browser/net/atom_cert_verifier.h", "brightray/browser/net/require_ct_delegate.cc", "brightray/browser/net/require_ct_delegate.h", "brightray/browser/url_request_context_getter.cc", "brightray/browser/url_request_context_getter.h", "brightray/filenames.gypi", "filenames.gypi"]
|
Crash on app quit at atom::AtomCTDelegate::ClearCTExcludedHostsList
|
* Electron version: 1.7.1
* Operating system: Windows / Mac
### Expected behavior
no crash on quit
### Actual behavior
Crash on app quit
```
Thread 23 Crashed:: Chrome_IOThread
0 com.github.electron.framework 0x000000010e3761f2 std::__1::__tree<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >::destroy(std::__1::__tree_node<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void*>*) + 18 (__tree:1828)
1 com.github.electron.framework 0x000000010dac0047 std::__1::__tree<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >::clear() + 23 (__tree:1831)
2 com.github.electron.framework 0x000000010dabffed atom::AtomCTDelegate::ClearCTExcludedHostsList() + 13 (atom_ct_delegate.cc:23)
3 com.github.electron.framework 0x000000010dabe69a atom::AtomCertVerifier::Verify(net::CertVerifier::RequestParams const&, net::CRLSet*, net::CertVerifyResult*, base::Callback<void (int), (base::internal::CopyMode)1, (base::internal::RepeatMode)1> const&, std::__1::unique_ptr<net::CertVerifier::Request, std::__1::default_delete<net::CertVerifier::Request> >*, net::NetLogWithSource const&) + 58 (atom_cert_verifier.cc:170)
4 com.github.electron.framework 0x000000010f5104fa net::SSLClientSocketImpl::DoVerifyCert(int) + 586 (ssl_client_socket_impl.cc:1273)
5 com.github.electron.framework 0x000000010f50e3a0 net::SSLClientSocketImpl::DoHandshakeLoop(int) + 160 (ssl_client_socket_impl.cc:1404)
6 com.github.electron.framework 0x000000010f50ffd5 net::SSLClientSocketImpl::OnHandshakeIOComplete(int) + 21 (ssl_client_socket_impl.cc:1370)
7 com.github.electron.framework 0x000000010f5192e3 net::TCPClientSocket::DidCompleteRead(base::Callback<void (int), (base::internal::CopyMode)1, (base::internal::RepeatMode)1> const&, int) + 115 (tcp_client_socket.cc:357)
8 com.github.electron.framework 0x000000010f51c09f net::TCPSocketPosix::ReadCompleted(scoped_refptr<net::IOBuffer> const&, base::Callback<void (int), (base::internal::CopyMode)1, (base::internal::RepeatMode)1> const&, int) + 31 (tcp_socket_posix.cc:590)
9 com.github.electron.framework 0x000000010f4d972f net::SocketPosix::ReadCompleted() + 207 (socket_posix.cc:465)
10 com.github.electron.framework 0x000000010f4d9626 net::SocketPosix::OnFileCanReadWithoutBlocking(int) + 310 (trace_event.h:1033)
11 com.github.electron.framework 0x000000010dc4c8b7 base::MessagePumpLibevent::OnLibeventNotification(int, short, void*) + 215 (message_pump_libevent.cc:341)
12 com.github.electron.framework 0x000000010dcb7e85 event_base_loop + 1205 (event.c:521)
13 com.github.electron.framework 0x000000010dc4cadf base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) + 127 (message_pump_libevent.cc:224)
14 com.github.electron.framework 0x000000010dc498ee base::MessageLoop::RunHandler() + 94 (message_loop.cc:388)
15 com.github.electron.framework 0x000000010dc634f3 base::RunLoop::Run() + 115 (run_loop.cc:38)
16 com.github.electron.framework 0x000000010ded33d8 content::BrowserThreadImpl::IOThreadRun(base::RunLoop*) + 24 (browser_thread_impl.cc:278)
17 com.github.electron.framework 0x000000010ded3566 content::BrowserThreadImpl::Run(base::RunLoop*) + 294 (browser_thread_impl.cc:312)
18 com.github.electron.framework 0x000000010dc83c59 base::Thread::ThreadMain() + 393 (thread.cc:336)
19 com.github.electron.framework 0x000000010dc57a87 base::(anonymous namespace)::ThreadFunc(void*) + 87 (platform_thread_posix.cc:73)
20 libsystem_pthread.dylib 0x00007fff8344c99d _pthread_body + 131
21 libsystem_pthread.dylib 0x00007fff8344c91a _pthread_start + 168
22 libsystem_pthread.dylib 0x00007fff8344a351 thread_start + 13
```
### How to reproduce
No consistent repro. May be happening after #7651
cc: @kevinsawicki @deepak1556
|
https://github.com/electron/electron/issues/10051
|
https://github.com/electron/electron/pull/11125
|
aaae1bb176903468e14e98e4c23e3191598edeac
|
ccb6651752719109e5573f8332c150c207fb87fe
| 2017-07-17T20:38:28Z |
c++
| 2017-11-17T15:53:56Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,042 |
["docs/api/webview-tag.md", "spec-main/webview-spec.ts"]
|
Document webview did-attach event
|
Added in #7157.
|
https://github.com/electron/electron/issues/10042
|
https://github.com/electron/electron/pull/29899
|
637ba48b420142092f9b426e4f9099b12777c212
|
c0995b8dfff0ad623fdad0a9ea0ac3bd71b096a5
| 2017-07-17T13:03:27Z |
c++
| 2021-07-14T11:59:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 10,007 |
["atom/browser/atom_resource_dispatcher_host_delegate.cc", "atom/browser/atom_web_ui_controller_factory.cc", "spec/chromium-spec.js"]
|
Cannot open the PDF file with the ampersand symbol existed in the url.
|
* Electron version: 1.7.4
* Operating system: macOS Sierra
### Expected behavior
Load the PDF file correctly.
### Actual behavior
When I try to load something like http://digitalcommons.unl.edu/cgi/viewcontent.cgi?article=1118&context=podimproveacad, the '&' symbol seems to interrupt the PDF Viewer to load the file.

You can see that part of query string behind '&' get chopped, and I believe this is the reason why the PDF Viewer failed to load.
### How to reproduce
Clone the reproducible project at https://github.com/qazbnm456/electron-quick-start.
```
$ yarn # install packages
$ yarn run start # start the electron
```
|
https://github.com/electron/electron/issues/10007
|
https://github.com/electron/electron/pull/10008
|
2bac35806454e4cc4e97dc7380be6d6a36826def
|
1d9f69e7428c73a4e10f14740611c159b3e93800
| 2017-07-14T03:59:10Z |
c++
| 2017-07-18T16:10:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,987 |
["docs/api/shell.md"]
|
shell.openExternal() Windows URL limit of 2081 characters
|
* Electron version: 1.4.12
* Operating system: Windows 10
### Expected behavior
Open the url given in the default OS browser
### Actual behavior
`shell.openExternal(url);` returns `false`
### How to reproduce
Call `shell.openExternal()` with an url of length greater than **2081** under a Windows OS.
*(I only tested it on Windows 10, on MacOS works fine)*
|
https://github.com/electron/electron/issues/9987
|
https://github.com/electron/electron/pull/10795
|
a914d3c5348348fbbaea16febda8c8d241a87adf
|
71f13620d3c59ce4b295b5f398847bb7b3aaa226
| 2017-07-12T10:53:16Z |
c++
| 2017-10-17T02:32:09Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,971 |
["atom/renderer/atom_renderer_client.cc", "atom/renderer/atom_renderer_client.h", "atom/renderer/atom_sandboxed_renderer_client.h", "atom/renderer/renderer_client_base.cc", "atom/renderer/renderer_client_base.h", "docs/api/sandbox-option.md", "lib/sandboxed_renderer/api/exports/electron.js", "spec/api-browser-window-spec.js", "spec/fixtures/api/isolated-preload.js"]
|
contextIsolation doesn't work with when sandbox is true
|
* Electron version: 1.7.3
* Operating system: Windows, MacOS, Linux
### Expected behavior
Context Isolation should work when sandbox option is set to true
### Actual behavior
Context Isolation should work when sandbox option is set to true
### How to reproduce
Turn on contextIsolation and sandbox on browser window. contextIsolation doesn't work.
contextIsolation work needs to happen on sandbox renderer client as well.
cc: @tarruda @kevinsawicki @chandrachivukula
|
https://github.com/electron/electron/issues/9971
|
https://github.com/electron/electron/pull/10214
|
66a5ac4d67a046004d3e6d8b1847733aa6b29108
|
c6918966c25144e85956b8614bd5f005ae4e642a
| 2017-07-10T21:09:06Z |
c++
| 2017-08-29T04:20:04Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,949 |
["lib/renderer/chrome-api.js", "lib/renderer/extensions/storage.js"]
|
`chrome.storage` in injected_scripts does not share data across domains
|
* Electron version: 1.7.2
* Operating system: macOS (but concers all)
### Actual behavior
```js
// injected in https://mail.google.com/ for extenions ABC
chrome.storage.sync.set({foo: 'bar'})
// injected in https://mailtracker.hunter.io for extensions ABC
chrome.storage.sync.get('foo', obj => console.log(obj)) // nothing :(
// injected in https://mail.google.com/ for extension XYZ
chrome.storage.sync.get('foo', obj => console.log(obj)) // {foo: 'bar'}
```
### Expected behavior
From my [understanding of `chrome.storage`](https://developer.chrome.com/extensions/storage) the data should be scoped by extension and not by domain in which the extension's `content_scripts` are injected.
```js
// injected in https://mail.google.com/ for extenion ABC
chrome.storage.sync.set({foo: 'bar'})
// injected in https://mailtracker.hunter.io for extension ABC
chrome.storage.sync.get('foo', obj => console.log(obj)) // {foo: 'bar'}
// injected in https://mail.google.com/ for extension XYZ
chrome.storage.sync.get('foo', obj => console.log(obj)) // nothing
```
### How to reproduce
_Can provide a repo_
### Reason
Because our implementation of `chrome.storage` [uses](https://github.com/electron/electron/blob/master/lib/renderer/extensions/storage.js#L2) `window.localStorage`, the access to data is scoped to host web-page's domain.
### Suggested solution
- replace the use of `window.localStorage` in [`storage.js`](https://github.com/electron/electron/blob/master/lib/renderer/extensions/storage.js) by a file based storage (`electron-json-storage` ?)
- create and inject a store by `extensionId` same as [`extensions/i18.js`](https://github.com/electron/electron/blob/master/lib/renderer/extensions/i18n.js#L78-L84)
_Related: #1498_
|
https://github.com/electron/electron/issues/9949
|
https://github.com/electron/electron/pull/9951
|
54e03d6edd474b48928d28bbc5eaf321c4533488
|
25f168cecb85d16a5ccb67c7934bdec60a5774ef
| 2017-07-06T15:14:54Z |
c++
| 2017-07-24T05:01:15Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,944 |
["atom/browser/browser_win.cc", "spec/api-app-spec.js", "spec/package.json"]
|
removeAsDefaultProtocolClient doesn't remove HKCU\Software\Classes\#protocol# key
|
* Electron version: 1.7.x
* Operating system: Windows
### Expected behavior
removeAsDefaultProtocolClient should also delete the protocol key - HKCU\Software\Classes\#protocol#
### Actual behavior
removeAsDefaultProtocolClient doesn't delete the protocol key - HKCU\Software\Classes\#protocol#
### How to reproduce
Call app.setAsDefaultProtocolClient('foo') and app.removeAsDefaultProtocolClient('foo'). HKCU\Software\Classes\foo stay in the registry for windows.
|
https://github.com/electron/electron/issues/9944
|
https://github.com/electron/electron/pull/11329
|
69c6a68c224575c6f7953c25572ef4df327e61ef
|
5fa29fcf587608423213904f951dd0ad3aa5ccec
| 2017-07-05T19:02:36Z |
c++
| 2017-12-06T23:31:50Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,933 |
["atom/browser/api/atom_api_desktop_capturer.cc"]
|
desktopCapturer: MediaStream does not contain content matching chromeMediaSourceId
|
* Electron version: 1.7.3 - not sure when this was introduced, works fine in latest production build based on 1.4.15
* Operating system: Windows
### Expected behavior
I have three screens connected to my computer. `desktopCapturer.getSources({types: ['screen']})` correctly identifies three sources.
I want to share my first screen and set `chromeMediaSourceId` to the matching id `screen:0:0` in the constraints when requesting the MediaStream using `navigator.mediaDevices.getUserMedia()`. I should get a MediaStream containing a video track with the content of the first screen.
### Actual behavior
The stream returned will show the content of the second screen. If I ask for the second screen, I get the third screen. If I ask for the third screen, I get a black screen.
### How to reproduce
https://github.com/wireapp/wire-desktop
````
git clone https://github.com/wireapp/wire-desktop.git
npm install
npm run prod
````
* Log in or create a Wire account. Feel free to connect to me (@gregor)
* Start audio or video call
* Click on share your screen
* Select screen to be shared


|
https://github.com/electron/electron/issues/9933
|
https://github.com/electron/electron/pull/11664
|
868e792572466ccb33b3a27e1472e87b53173096
|
0207aebad1b9ad5c2195299bb1fa7437ba39f683
| 2017-07-04T15:25:45Z |
c++
| 2018-01-24T05:38:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,842 |
["docs/api/command-line-switches.md"]
|
Force integrated GPU
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.7.3
* Operating system: macOS 10.12.5
### Problem
[My app](https://github.com/sindresorhus/caprine) uses the discrete GPU constantly which has a negative impact on battery life (https://github.com/sindresorhus/caprine/issues/238). I would like to be able to force my app to only use the integrated GPU if available. Chrome has a flag for this: `--force_discrete_gpu=0`. This is different from the `app.disableHardwareAcceleration()` method as I don't want to disable hardware acceleration, just use the more power efficient GPU.
### Solution
Support it with `app.commandLine.appendSwitch()` or as a separate method `app.forceIntegratedGPU()`.
|
https://github.com/electron/electron/issues/9842
|
https://github.com/electron/electron/pull/25589
|
99a42841743f419ceb1d8e038b26edd6f5b739db
|
8970c80520b0fd2b1d3f4376da1f393cea17708a
| 2017-06-24T14:40:46Z |
c++
| 2020-09-29T15:49:09Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,823 |
["atom/browser/api/atom_api_menu.cc", "atom/browser/api/atom_api_menu.h", "atom/browser/api/event_emitter.h", "lib/browser/api/menu.js", "spec/api-menu-spec.js", "vendor/native_mate"]
|
Memory leak when creating Menu
|
* Electron version: 1.7.3, 1.6.11
* Operating system: macOS 10.12.5
### Expected & Actual behavior
Creating a menu object then losing the reference to it should not increase memory consumption. In the below example the menu is thrown away at the end of the function, but remains in memory.
```js
const { Menu } = require('electron')
(function () {
const menu = Menu.buildFromTemplate([{ label: 'Test' }])
})()
```
Arguably you should could call `destroy()` on the menu, but if it has submenus the leak remains as the submenus are not destroyed either.
```js
const { Menu } = require('electron')
(function () {
const menu = Menu.buildFromTemplate([{
label: 'Test',
submenu: [ { label: 'Test2' } ]
}])
menu.destroy()
})()
```
### How to reproduce
Probably best to show this with an example :). This repo does nothing more than create lots of menus and log memory usage
```
git clone https://github.com/wavebox/electron-quick-start.git
cd electron-quick-start
git checkout menu-memory-leak
npm install
npm run broken //to see the broken behaviour
npm run fixed //to see the fixed behaviour
```
In the broken example `destroy()` is only called on the topmost created menu. In the fixed example `destroy()` is also called on the submenu
### Fixes
I guess there's arguments for either destroying automatically when references are released, or being required to call destroy to release memory. You could also argue that the `destroy` call should destroy all submenus too, but I can imagine use cases where this might not be desirable. Perhaps having a `destroyAll()` type call would be useful.
|
https://github.com/electron/electron/issues/9823
|
https://github.com/electron/electron/pull/11967
|
e1b81b8a62793c957a77e67ca1878cc597012611
|
dc62e51ba49b5d3b181e508778d71845085113ab
| 2017-06-21T18:16:19Z |
c++
| 2018-02-20T16:11:35Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,775 |
["docs/api/ipc-renderer.md"]
|
Typescript translation incorrect for Electron.IpcRenderer.sendSync
|
* Electron version: 1.6.11
* Operating system: MacOS
### Expected behavior
Documentation does not define the return value for IpcRenderer.sendSync(). sendSync should be defined to return "any"
### Actual behavior
Documentation does not define a return type so the generated typescript definition for sendSync incorrectly returns void
### How to reproduce
See recent documentation and generated electron.d.ts
|
https://github.com/electron/electron/issues/9775
|
https://github.com/electron/electron/pull/9883
|
abff9891eab9350c61d5f230216b8e28487eb078
|
f0ec9c68b05ea59dbc846aa18e1d54779f1602af
| 2017-06-16T06:40:41Z |
c++
| 2017-06-28T15:03:27Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,749 |
["docs/api/session.md"]
|
Properties of ClearStorageDataOptions interface should not be required
|
* Electron version: 1.7.2
* Operating system: Windows 10
### Expected behavior
All properties as defined by the `ClearStorageDataOptions` interface should be optional. When passing an options object to `session.clearStorageData`, I should only have to specify the options I want.
### Actual behavior
All properties as defined by the `ClearStorageDataOptions` interface are declared as required. When passing an options object to `session.clearStorageData`, Typescript requires I define all three properties.
There is an easy workaround. Just insert an `<any>` cast.
### How to reproduce
1. Create a sample Electron project using Typescript.
2. Insert the following code somewhere in the renderer process:
```ts
window.webContents.session.cleareStorageData({ storages: ["cookies"] });
```
3. Compile using `tsc`. Typescript reports an error.
|
https://github.com/electron/electron/issues/9749
|
https://github.com/electron/electron/pull/9750
|
f91409b2e83c050c49cbded6082eae4d0a8a7c68
|
b328a238a6f917335d105d856517f90110b8b7af
| 2017-06-13T18:06:56Z |
c++
| 2017-06-13T20:48:10Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,736 |
["atom/renderer/atom_render_frame_observer.cc", "atom/renderer/atom_renderer_client.cc", "atom/renderer/atom_renderer_client.h", "atom/renderer/atom_sandboxed_renderer_client.h", "atom/renderer/renderer_client_base.h", "lib/isolated_renderer/init.js", "lib/renderer/init.js"]
|
webviewTag is not compatible with contextIsolation
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.7.2
* Operating system: macOS Sierra
### Expected behavior
Webview appear
### Actual behavior
It don't
### How to reproduce
1. Create a browser window with contextIsolation on true and webviewTag on true
2. Inside of it, add a webview
3. Run it, webview should not appear
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/9736
|
https://github.com/electron/electron/pull/16046
|
d6d245d0c374d0b5a8cef70759327b172cf77ecd
|
897c6e93cbab59251a831e8529fd43e665bde1d4
| 2017-06-12T10:18:18Z |
c++
| 2018-12-13T21:25:12Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,717 |
["lib/browser/guest-view-manager.js", "spec/webview-spec.js"]
|
document.visibilityState is hidden in <webview>s when BrowserWindow shown on ready-to-show
|
* Electron version: 1.7.3
* Operating system: macOS 10.12.5
When a `BrowserWindow` is created with `{show: false}` and then `show`n on `ready-to-show`, its `<webview>`s will (incorrectly?) have a `document.visibilityState` of `hidden`. Prior to https://github.com/electron/electron/pull/9178 (cc: @poiru), it would be `visible`.
Here's a little example app: https://gist.github.com/javan/f1f5257044bfdf6f3dae47ccc2f57be4

Showing the window on `dom-ready` works and the `visibilityState` is `visible`.
```js
mainWindow.webContents.on('dom-ready', function() {
mainWindow.show()
})
```
|
https://github.com/electron/electron/issues/9717
|
https://github.com/electron/electron/pull/9741
|
dae27de504ec7f07b31e66cce2f513c7a351cc2f
|
5b0290bf8885a3292561adae19029376fd442710
| 2017-06-09T13:40:36Z |
c++
| 2017-06-14T22:22:55Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,711 |
["atom/browser/native_window_mac.mm"]
|
In macOS 10.13 frameless BrowserWindow still displays a titlebar
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
As described in the title, even a BrowserWindow is passed `frame: false`, the title bar would still be rendered in macOS 10.13. This behavior doesn't happen in 10.12.
See this image:

* Electron version: 1.6.10 and 1.7.3 Beta
* Operating system: macOS 10.13 (Beta) 17A264c
### Expected behavior
<!-- What do you think should happen? -->
No title bar should be displayed.
### Actual behavior
<!-- What actually happens? -->
A white title bar is displayed at the top.
### How to reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
See this repo: [Demo](https://github.com/RCD-Y/BrowserWindow-bug-demo)
Run it like so:
$ git clone https://github.com/RCD-Y/BrowserWindow-bug-demo
$ npm install
$ npm start || electron .
|
https://github.com/electron/electron/issues/9711
|
https://github.com/electron/electron/pull/9798
|
3abeb6e2bc5a300d9cc787b893584922f1e39e06
|
3cc042938837ff1aa2fe8e5d67705fa1b3a3ba62
| 2017-06-09T07:42:16Z |
c++
| 2017-06-22T21:27:23Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,709 |
["vendor/libchromiumcontent"]
|
Only the first letter will be alphabetic when input Japanese. (using Japanese IME)
|
* Electron version: 1.7.2
* Operating system: mac OSX El Capitan 10.11.6
* Node version: 4.4.7, 7.2.1, 7.9.0
### Expected behavior
We should be able to input Japanese in text-input on webview, using the Japanese IME to convert alphabets to Japanese.
### Actual behavior
Immediately after application focus, and start typing Japanese input.
Only the first letter will be alphabetic.
### How to reproduce
```
$ git clone https://github.com/Kurom96/electron-quick-start.git -b japanese-input-bug
$ cd electron-quick-start
$ npm i
$ npm start
```
See bellow.

### Others
* It does not occur under 1.7.1
* Is this fix affected? #9173
|
https://github.com/electron/electron/issues/9709
|
https://github.com/electron/electron/pull/9967
|
6341749b82ebf5ba137504116ebcb39945b7f196
|
8ae55dae6cd5f54170c482f12870f500e591aecc
| 2017-06-09T05:31:04Z |
c++
| 2017-07-10T21:31:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,696 |
["atom/app/node_main.cc", "atom/browser/node_debugger.cc", "atom/browser/node_debugger.h", "spec/node-spec.js"]
|
--inspect does not seem to work in forked processes
|
* Electron version: 1.7.2
* Operating system: macOS 10.12.5
### Expected behavior
Forked processes can be started with `--inspect` or `--inspect-brk` for debugging them.
### Actual behavior
This option does not seem to have any impact.
### How to reproduce
* `git clone https://github.com/bpasero/electron-inspect.git`
* `npm install`
* `./node_modules/.bin/electron .`
=> we fork the process in https://github.com/bpasero/electron-inspect/blob/master/fork.js#L3
=> you see a file `tempXYZ` appearing which means `script.js` was executed
=> this is unexpected because `fork.js` was forked with `--inspect-brk`
|
https://github.com/electron/electron/issues/9696
|
https://github.com/electron/electron/pull/9739
|
3370be03607c63da8db590c30426ab3cbd489497
|
014aaccfc6cab7937e7d872cdc497469328ebe37
| 2017-06-07T19:11:38Z |
c++
| 2017-06-12T21:23:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,665 |
["brightray/browser/win/win32_desktop_notifications/common.h", "brightray/browser/win/win32_desktop_notifications/desktop_notification_controller.cc"]
|
Windows 7 notifications taking up half the screen
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.10
* Operating system: Windows 7
### Expected behavior
<!-- What do you think should happen? -->
Notification size should be smaller, similar to the one you can just see in the screenshot below that you can just see the bottom of, behind the large notification.
### Actual behavior
<!-- What actually happens? -->
The new notifications for windows 7 are taking up half of the screen space as seen in the image below:

I'm running windows in parallels on a mac, so I expect it to be a screen resolution issue (2880x1800)
### How to reproduce
Test notifications on Windows 7 with parallels on a mac, or use Windows with a high screen resolution (e.g. 2880x1800).
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/9665
|
https://github.com/electron/electron/pull/10715
|
1e6d51642ce454313fa8fb6a206bf8c7219d386a
|
19ac2179fb365525baeecbae5e01b72b5b27db78
| 2017-06-04T12:31:22Z |
c++
| 2017-10-09T19:56:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,651 |
["script/rebuild-test-modules.py"]
|
5 electron tests failed with master branch latest revision
|
We tried to build and run tests for electron. There are 5 tests failed on master branch latest revision dfab104. I reported issue https://github.com/electron/electron/issues/9442 before. And you fixed these 4 tests on x86. However these 4 tests still failed on x64. And there is a new test failed on both x86 and x64. Could you please help to take a look at this? Thanks in advance!
**Repro steps:**
1. git clone https://github.com/electron/electron.git D:\Electron\src
2. Open a clean command prompt and browse to D:\Electron\src
3. set APPVEYOR=True
4. Build and test electron:
**For x86:**
a. python script\bootstrap.py -v --target_arch=ia32
b. vendor\depot_tools\ninja.exe -C out\R electron -v -d keeprsp
c. python script\test.py --ci -c R
**For x64:**
a. python script\bootstrap.py -v --target_arch=x64
b. vendor\depot_tools\ninja.exe -C out\R_x64 electron -v -d keeprsp
c. python script\test.py --ci -c R_x64
**Expected behavior**
All tests passed on x86 and x64
**Actual behavior**
**For x86: 1 test failed**
**not ok 126** BrowserWindow module "webPreferences" option nativeWindowOpen option blocks accessing cross-origin frames
Error: Timeout of 30000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
at D:\Electron\src\spec\node_modules\mocha\lib\runnable.js:232:19
**For x64: 5 tests failed**
**not ok 116** BrowserWindow module "webPreferences" option nativeWindowOpen option blocks accessing cross-origin frames
Error: Timeout of 30000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
at D:\Electron\src\spec\node_modules\mocha\lib\runnable.js:232:19
**not ok 118** BrowserWindow module "webPreferences" option nativeWindowOpen option loads native addons correctly after reload
Error: Timeout of 30000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
at D:\Electron\src\spec\node_modules\mocha\lib\runnable.js:232:19
**not ok 668** modules support third-party module runas can be required in renderer
Error: A dynamic link library (DLL) initialization routine failed.
\\?\D:\Electron\src\spec\node_modules\runas\build\Release\runas.node
at process.module.(anonymous function) [as dlopen] (ELECTRON_ASAR.js:173:20)
at Object.Module._extensions..node (module.js:598:18)
at Object.module.(anonymous function) [as .node] (ELECTRON_ASAR.js:173:20)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.require (module.js:498:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (D:\Electron\src\spec\node_modules\runas\lib\runas.js:4:11)
at Object.<anonymous> (D:\Electron\src\spec\node_modules\runas\lib\runas.js:47:4)
**not ok 669** modules support third-party module runas can be required in node binary
AssertionError: 'A dynamic link library (DLL) initialization routine failed.\r\n\\\\?\\D:\\Electron\\src\\spec\\node_modules\\runas\\build\\Rele == 'ok'
at ChildProcess.<anonymous> (D:\Electron\src\spec\modules-spec.js:25:18)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:194:7)
at process.nextTick (internal/child_process.js:766:12)
at _combinedTickCallback (internal/process/next_tick.js:73:7)
at process._tickCallback (internal/process/next_tick.js:104:9)
**not ok 723** <webview> tag nodeintegration attribute loads native modules when navigation happens
AssertionError: 'Uncaught Error: A dynamic link library (DLL) initialization routine failed.\r\n\\\\?\\D:\\Electron\\src\\spec\\node_modules\\ru == 'function'
at HTMLElement.listener2 (D:\Electron\src\spec\webview-spec.js:181:18)
at WebViewImpl.dispatchEvent (D:\Electron\src\out\R_x64\resources\electron.asar\renderer\web-view\web-view.js:175:22)
at dispatchEvent (D:\Electron\src\out\R_x64\resources\electron.asar\renderer\web-view\guest-view-internal.js:55:11)
at EventEmitter.<anonymous> (D:\Electron\src\out\R_x64\resources\electron.asar\renderer\web-view\guest-view-internal.js:72:7)
at emitMany (events.js:127:13)
at EventEmitter.emit (events.js:204:7)
|
https://github.com/electron/electron/issues/9651
|
https://github.com/electron/electron/pull/9682
|
53b6ee0e3ff3b5abd2f28cd52cc29e4e0d6cb570
|
21439a138bf182590d2514218ec90683d44eaa7b
| 2017-06-02T05:54:16Z |
c++
| 2017-06-06T20:37:48Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,635 |
["atom/browser/net/url_request_fetch_job.cc"]
|
Crash error in video streaming on a custom protocol
|
* Electron version: 1.7.1
* Operating system: MacOS 10.12.5
Rendering a `<video>` stream in a custom (http) protocol will crash Electron. The same video streamed from the http handler does not crash the process.
One notable feature is that the crash likelihood seems to be increased by reducing the range in the response to 1MB ([this line](https://github.com/pfrazee/electron-bug-video-stream-crash/blob/master/server.js#L14)).
### How to reproduce
https://github.com/pfrazee/electron-bug-video-stream-crash
```
git clone https://github.com/pfrazee/electron-bug-video-stream-crash
npm install
npm start
```
|
https://github.com/electron/electron/issues/9635
|
https://github.com/electron/electron/pull/10918
|
52cbec24389fcd6bb0ef4eeb11bed268fd3ef208
|
3230048f8129267ab2f0f000a9235dcc20e0f8be
| 2017-05-31T17:19:34Z |
c++
| 2017-10-26T09:35:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,622 |
["atom/browser/api/atom_api_app.cc", "atom/browser/browser.h", "atom/browser/browser_mac.mm", "atom/browser/mac/atom_application.h", "atom/browser/mac/atom_application.mm", "docs/api/app.md"]
|
Improve Handoff API support
|
* Electron version: 1.6.10
* Operating system: macOS Sierra 10.12.4 (16E195)
# Improve Handoff API support
Hi!
Today the API of Handoff provides the methods: `setUserActivity`, `getCurrentActivityType` and dispatch the event `continue-activity`
I'm using Handoff and noticed that in some circumstances the broadcast takes a long time to update its userInfo which does not happen on the native iOS client
1. To invalidate or resign the current activity we currently need to create a non-existing activity type and set it as the current activity. There's no way to handle the activity life cycle through electron.
2. When we need to update a given user activity userInfo frequently (i.e in response to a search bar's text changes), we have no efficient way. Setting a new userActivity with the updated information takes several seconds to bridge, whereas doing this on iOS native app is instantaneous.
I believe that exposing a bit more of the NSUserActivity API to Electron would help, namely `becomeCurrent`, `resignCurrent` and `invalidate` which would address point 1, and `needsSave` and a new event to allow updating an activity when needed to address point 2.
These are described in more detail in https://developer.apple.com/reference/foundation/nsuseractivity.
I'm are open to help in any way i can such as explaining how the native API work, providing sample code or testing possible implementations
Thank you!
|
https://github.com/electron/electron/issues/9622
|
https://github.com/electron/electron/pull/18659
|
b30484d3a9a8d9fc000376c8daa35dc515b6f847
|
abab90f563c054c7b12319b87fb9f1130708f58c
| 2017-05-30T17:05:10Z |
c++
| 2019-06-07T05:16:03Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,587 |
["atom/browser/net/url_request_fetch_job.cc", "atom/browser/net/url_request_fetch_job.h", "brightray/browser/browser_context.cc", "brightray/browser/browser_context.h", "brightray/browser/url_request_context_getter.h"]
|
Crash running custom session spec on master
|
The [use custom session protocol spec](https://github.com/electron/electron/blob/fea165bef8e1edf99b6e1500da89d015e76cc8e1/spec/api-protocol-spec.js#L874) is curently crashing on master on Windows 64-bit.
For some reason it isn't failing the build though which is why it wasn't caught earlier, will look into that separately.
I bisected and it started happening in https://github.com/electron/electron/pull/9358
```
Backtrace:
tracked_objects::ThreadData::next [0x00007FF959D9C964+1437860]
purecall [0x00007FF96DD94A74+52]
??1?$MessageT@UInputHostMsg_MoveCaret_ACK_Meta@@V?$tuple@$$V@std@@X@IPC@@UEAA@XZ [0x00007FF94CA8C4B8+13298808]
??1?$MessageT@UInputHostMsg_MoveCaret_ACK_Meta@@V?$tuple@$$V@std@@X@IPC@@UEAA@XZ [0x00007FF94CA8C6A8+13299304]
??1?$MessageT@UInputHostMsg_MoveCaret_ACK_Meta@@V?$tuple@$$V@std@@X@IPC@@UEAA@XZ [0x00007FF94C612AB5+8606325]
??1?$MessageT@UInputHostMsg_MoveCaret_ACK_Meta@@V?$tuple@$$V@std@@X@IPC@@UEAA@XZ [0x00007FF94C612948+8605960]
??1?$MessageT@UInputHostMsg_MoveCaret_ACK_Meta@@V?$tuple@$$V@std@@X@IPC@@UEAA@XZ [0x00007FF94C610F34+8599284]
tracked_objects::ThreadData::next [0x00007FF959C7372D+220781]
tracked_objects::ThreadData::next [0x00007FF959CAD996+458966]
tracked_objects::ThreadData::next [0x00007FF959CAC0D0+452624]
tracked_objects::ThreadData::next [0x00007FF959CB0377+469687]
tracked_objects::ThreadData::next [0x00007FF959CB0EA4+472548]
tracked_objects::ThreadData::next [0x00007FF959CF4D1E+750686]
??1?$MessageT@UInputHostMsg_MoveCaret_ACK_Meta@@V?$tuple@$$V@std@@X@IPC@@UEAA@XZ [0x00007FF94C60A00F+8570831]
??1?$MessageT@UInputHostMsg_MoveCaret_ACK_Meta@@V?$tuple@$$V@std@@X@IPC@@UEAA@XZ [0x00007FF94C60AEB5+8574581]
tracked_objects::ThreadData::next [0x00007FF959D34BF7+1012535]
tracked_objects::ThreadData::next [0x00007FF959D28315+961109]
BaseThreadInitThunk [0x00007FF97ABE8364+20]
RtlUserThreadStart [0x00007FF97D5670D1+33]
```
/cc @deepak1556
|
https://github.com/electron/electron/issues/9587
|
https://github.com/electron/electron/pull/9597
|
d53de947b6ddebeb684dbc04023d39155919feab
|
aceea50f418c72b4f85ffe033a3cea752d81f0cf
| 2017-05-25T19:05:56Z |
c++
| 2017-05-26T17:09:37Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,581 |
["atom/browser/atom_browser_client.cc"]
|
iframe window.open broken
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.8
* Operating system: MacOS
Apologies if this is a duplicate, I found issues related to `window.open`, however I believe none covered my use case
### Expected behavior
Communication between an iframe and windows it opens should be possible (via `postMessage` API). Therefore, `window.open` should behave correctly when used within an iframe.
#### Opener to opened
Calling `window.open` from within an iframe should return the created `BrowserProxyWindow`, allowing the **opener** to post messages to the **opened**
#### Opened to opener
The opened windows `window.opener` should point back to the iframes window (the window that opened it), allowing the **opened** to post messages to the **opener**
### Actual behavior
Communication between the opener and the opened window is broken in both directions when the
opener is an iframe.
#### Opener to opened
`window.open` returns `null` when called within an iframe. Therefore, it is impossible for the opener to communicate to the opened window.
`window.open` uses Chromiums implementation instead of Electron's proxy from within an iframe.
#### Opened to opener
`window.opener` points to `top` instead of the iframe which opened the window. Therefore, it is impossible to communicate from the opened window to the opener window (the iframe).
### How to reproduce
The easiest way to reproduce is to:
1. open up the example electron app
2. open dev tools and insert an iframe
3. from dev tools console set the context to the iframe, and execute `window.open` (it will return `null`)
4. open the dev tools in the opened window and inspect `window.opener`... it will NOT point to the opener (the iframe) instead it will be pointing at `top`
|
https://github.com/electron/electron/issues/9581
|
https://github.com/electron/electron/pull/9961
|
7961a97d7ddbed657c6c867cc8426e02c236c077
|
63d7aee1a6e97cf0498d7d1693cbccade901097c
| 2017-05-24T23:53:57Z |
c++
| 2017-08-04T12:18:47Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,561 |
["docs/api/app.md", "lib/browser/api/app.js", "spec/api-app-spec.js", "spec/package.json"]
|
Add `app.ready` Promise
|
Right now we have `app.isReady()` for checking if Electron is ready and `app.on('ready')` to be notified when it's ready. But if you're creating something that could be called at any time, you need to first check `app.isReady()`, and if `false`, subscribe to the `app.on('ready')` event.
I propose adding an `app.ready` Promise that resolves when Electron is ready. This would be especially useful with async/await, as you could just do:
```js
(async () => {
await app.ready;
// …
})();
```
I realize it's already possible to [do this yourself](https://github.com/sindresorhus/electron-util/blob/601f328e05a52419049c5fc83602356498b93892/index.js#L23-L29), but `app.on('ready')` is used by every app, so improving the default ergonomics can have big impact. It also results in one less level of nesting.
|
https://github.com/electron/electron/issues/9561
|
https://github.com/electron/electron/pull/12652
|
c7a0b419a9874a197438c81050e0c9d1db73e344
|
fcc82ebd353d1704e111d4d84a8a1e5675840dff
| 2017-05-23T07:48:21Z |
c++
| 2018-04-20T07:09:23Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,538 |
["atom/renderer/atom_renderer_client.cc"]
|
Webview crashes in AtomBindings::OnCallNextTick
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.8
* Operating system: Windows 7, 10
While there isn't concrete step to reproduce issue, I could get 2 minidump (shows different stacks) and attaching it just in case if this is helpful.
<details>
<summary>Crash 1</summary>
```
Operating system: Windows NT
6.1.7601 Service Pack 1
CPU: amd64
family 6 model 61 stepping 4
2 CPUs
Crash reason: EXCEPTION_ACCESS_VIOLATION_READ
Crash address: 0xffffffffffffffff
Assertion: Unknown assertion type 0x00000000
Thread 0 (crashed)
0 node.dll!v8::Context::Enter() [api.cc : 991 + 0x0]
rbx = 0x000007feec0273d8 r12 = 0x000000000bd9ded0
r13 = 0x0000000000000000 r14 = 0x0000000003684838
r15 = 0x0000000003684800 rip = 0x000007feeaf589a5
rsp = 0x000000000020d190 rbp = 0x000000000020d289
Found by: given as instruction pointer in context
1 <binary_name_replaced>.exe!blink::scheduler::internal::TaskQueueImpl::InsertFence(blink::scheduler::TaskQueue::InsertFencePosition) + 0x106
rip = 0x000000014228a0e3 rsp = 0x000000000020d1a0
rbp = 0x000000000020d289
Found by: stack scanning
2 node.dll!node::After [node_file.cc : 145 + 0x13]
rip = 0x000007feeaef7954 rsp = 0x000000000020d1c0
rbp = 0x000000000020d289
Found by: stack scanning
3 <binary_name_replaced>.exe!blink::scheduler::CancelableClosureHolder::Cancel() + 0x3a
rip = 0x0000000141f37097 rsp = 0x000000000020d1f0
rbp = 0x000000000020d289
Found by: stack scanning
4 <binary_name_replaced>.exe!base::TimeTicks::Now() + 0x27
rip = 0x000000013fbd9aa8 rsp = 0x000000000020d200
rbp = 0x000000000020d289
Found by: stack scanning
5 ntdll.dll + 0x1103c7
rip = 0x00000000771503c8 rsp = 0x000000000020d208
rbp = 0x000000000020d289
Found by: stack scanning
6 ntdll.dll + 0x4dd47
rip = 0x000000007708dd48 rsp = 0x000000000020d240
rbp = 0x000000000020d289
Found by: stack scanning
7 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x000000000020d290
Found by: stack scanning
8 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x000000000020d2a0
Found by: stack scanning
9 node.dll!uv_poll [core.c : 383 + 0x14]
rip = 0x000007feeb9e2390 rsp = 0x000000000020d2e8
Found by: stack scanning
10 node.dll!uv__work_done [threadpool.c : 236 + 0x9]
rip = 0x000007feeb9f4479 rsp = 0x000000000020d2f0
Found by: stack scanning
11 node.dll!uv_process_async_wakeup_req [async.c : 97 + 0x4]
rip = 0x000007feeb9e4196 rsp = 0x000000000020d330
Found by: stack scanning
12 node.dll!uv_process_reqs [req-inl.h : 197 + 0xd]
rip = 0x000007feeb9e27d1 rsp = 0x000000000020d360
Found by: stack scanning
13 <binary_name_replaced>.exe!mate::Locker::Locker(v8::Isolate *) [locker.cc : 10 + 0x5]
rip = 0x000000013f9a304c rsp = 0x000000000020d380
Found by: stack scanning
14 node.dll!uv_run [core.c : 496 + 0x7]
rip = 0x000007feeb9e28d0 rsp = 0x000000000020d390
Found by: stack scanning
15 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x000000000020d3b0
Found by: stack scanning
16 <binary_name_replaced>.exe!atom::NodeBindings::UvRunOnce() [node_bindings.cc : 257 + 0xd]
rip = 0x000000013f993fa2 rsp = 0x000000000020d3c0
Found by: stack scanning
17 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x000000013fc41342 rsp = 0x000000000020d400
Found by: stack scanning
18 <binary_name_replaced>.exe!tracked_objects::ThreadData::Get() + 0x20
rip = 0x000000013fc41031 rsp = 0x000000000020d440
Found by: stack scanning
19 <binary_name_replaced>.exe!base::internal::Invoker<base::internal::BindState<void ( atom::NodeBindings::*)(void),base::WeakPtr<atom::NodeBindings> >,void >::Run(base::internal::BindStateBase *) [bind_internal.h : 339 + 0x3f]
rip = 0x000000013f993dcf rsp = 0x000000000020d470
Found by: stack scanning
20 <binary_name_replaced>.exe + 0x183ec7
rip = 0x000000013f993ec8 rsp = 0x000000000020d490
Found by: stack scanning
21 <binary_name_replaced>.exe!base::debug::TaskAnnotator::RunTask(char const *,base::PendingTask *) + 0x168
rip = 0x000000013fc54ec9 rsp = 0x000000000020d4a0
Found by: stack scanning
22 kernel32.dll + 0x21a09
rip = 0x0000000076f41a0a rsp = 0x000000000020d4e0
Found by: stack scanning
23 <binary_name_replaced>.exe!base::allocator::WinHeapFree(void *) [winheap_stubs_win.cc : 42 + 0x12]
rip = 0x000000013fc269dc rsp = 0x000000000020d510
Found by: stack scanning
24 <binary_name_replaced>.exe!atom::NodeBindings::WakeupMainThread() [node_bindings.cc : 271 + 0x3f]
rip = 0x000000013f9940d8 rsp = 0x000000000020d530
Found by: stack scanning
25 <binary_name_replaced>.exe!base::internal::WeakPtrBase::~WeakPtrBase() + 0x15
rip = 0x000000013fbdc0e6 rsp = 0x000000000020d570
Found by: stack scanning
26 <binary_name_replaced>.exe!blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue(blink::scheduler::internal::WorkQueue *) + 0x395
rip = 0x00000001421d689e rsp = 0x000000000020d5a0
Found by: stack scanning
27 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x000000000020d5d0
Found by: stack scanning
28 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x000000013fc41342 rsp = 0x000000000020d5f0
Found by: stack scanning
29 <binary_name_replaced>.exe!tracked_objects::TrackedTime::Now() + 0x24
rip = 0x000000013fc6aa55 rsp = 0x000000000020d630
Found by: stack scanning
30 ntdll.dll + 0x1103c7
rip = 0x00000000771503c8 rsp = 0x000000000020d648
Found by: stack scanning
31 ntdll.dll + 0x4dd47
rip = 0x000000007708dd48 rsp = 0x000000000020d680
Found by: stack scanning
32 <binary_name_replaced>.exe!blink::scheduler::internal::WorkQueue::GetFrontTaskEnqueueOrder(unsigned __int64 *) + 0x21
rip = 0x000000014228be9a rsp = 0x000000000020d6d0
Found by: stack scanning
33 <binary_name_replaced>.exe!base::internal::IncomingTaskQueue::AddToIncomingQueue(tracked_objects::Location const &,base::Callback<void ,1,1> const &,base::TimeDelta,bool) + 0xd6
rip = 0x000000013fc553a7 rsp = 0x000000000020d6f0
Found by: stack scanning
34 <binary_name_replaced>.exe!blink::scheduler::internal::WorkQueue::ShouldRunBefore(blink::scheduler::internal::WorkQueue const *) + 0x32
rip = 0x000000014228c057 rsp = 0x000000000020d700
Found by: stack scanning
35 <binary_name_replaced>.exe!atom::NodeBindings::WakeupMainThread() [node_bindings.cc : 271 + 0x3f]
rip = 0x000000013f9940d8 rsp = 0x000000000020d740
Found by: stack scanning
36 <binary_name_replaced>.exe!blink::scheduler::internal::TaskQueueSelector::PrioritizingSelector::SelectWorkQueueToService(blink::scheduler::TaskQueue::QueuePriority,blink::scheduler::internal::WorkQueue * *,bool *) + 0x89
rip = 0x000000014228c8aa rsp = 0x000000000020d7a0
Found by: stack scanning
37 <binary_name_replaced>.exe!blink::scheduler::ThreadLoadTracker::Advance(base::TimeTicks,blink::scheduler::ThreadLoadTracker::TaskState) + 0xd0
rip = 0x0000000141f36e05 rsp = 0x000000000020d7d0
Found by: stack scanning
38 <binary_name_replaced>.exe!std::_Tree_comp_alloc<std::_Tset_traits<base::TimeTicks,std::less<base::TimeTicks>,std::allocator<base::TimeTicks>,0> >::_Buynode<base::TimeTicks>(base::TimeTicks &&) + 0x1f
rip = 0x00000001421d3b28 rsp = 0x000000000020d7e0
Found by: stack scanning
39 <binary_name_replaced>.exe!base::internal::operator/<__int64,int>(base::internal::CheckedNumeric<__int64> const &,base::internal::CheckedNumeric<int> const &) + 0x34
rip = 0x000000013ff63759 rsp = 0x000000000020d7f0
Found by: stack scanning
40 <binary_name_replaced>.exe!base::internal::CheckedNumeric<__int64>::operator/=<int>(int) + 0x21
rip = 0x000000013ff637a2 rsp = 0x000000000020d820
Found by: stack scanning
41 <binary_name_replaced>.exe!base::internal::LockImpl::Lock() + 0x30
rip = 0x000000013fbd2121 rsp = 0x000000000020d870
Found by: stack scanning
42 <binary_name_replaced>.exe!blink::scheduler::QueueingTimeEstimator::QueueingTimeEstimator(blink::scheduler::QueueingTimeEstimator::Client *,base::TimeDelta) + 0xd7
rip = 0x0000000141f36a78 rsp = 0x000000000020d8b0
Found by: stack scanning
43 <binary_name_replaced>.exe!blink::scheduler::TimeDomain::MoveNewlyUpdatableQueuesIntoUpdatableQueueSet() + 0x24
rip = 0x00000001421d94f9 rsp = 0x000000000020d8c0
Found by: stack scanning
44 <binary_name_replaced>.exe!blink::scheduler::internal::TaskQueueSelector::SelectWorkQueueToService(blink::scheduler::internal::WorkQueue * *) + 0x62
rip = 0x000000014228c94b rsp = 0x000000000020d8f0
Found by: stack scanning
45 <binary_name_replaced>.exe!blink::scheduler::TaskQueueManager::SelectWorkQueueToService(blink::scheduler::internal::WorkQueue * *) + 0x1c
rip = 0x00000001421d6bb5 rsp = 0x000000000020d920
Found by: stack scanning
46 <binary_name_replaced>.exe!blink::scheduler::TaskQueueManager::UpdateWorkQueues(blink::scheduler::LazyNow) + 0xd0
rip = 0x00000001421d705d rsp = 0x000000000020d940
Found by: stack scanning
47 <binary_name_replaced>.exe!blink::scheduler::RendererSchedulerImpl::ReportTaskTime(blink::scheduler::TaskQueue *,double,double) + 0x171
rip = 0x0000000141b532ea rsp = 0x000000000020d970
Found by: stack scanning
48 <binary_name_replaced>.exe!blink::scheduler::TaskQueueManager::DoWork(base::TimeTicks,bool) + 0x1cd
rip = 0x00000001421d5aee rsp = 0x000000000020d9f0
Found by: stack scanning
49 <binary_name_replaced>.exe!blink::scheduler::TaskQueueManager::DoWork(base::TimeTicks,bool) + 0x34d
rip = 0x00000001421d5c6e rsp = 0x000000000020da20
Found by: stack scanning
50 ntdll.dll + 0x1103c7
rip = 0x00000000771503c8 rsp = 0x000000000020da68
Found by: stack scanning
51 <binary_name_replaced>.exe!tracked_objects::ThreadData::TallyADeath(tracked_objects::Births const &,int,tracked_objects::TaskStopwatch const &) + 0xf8
rip = 0x000000013fc42a59 rsp = 0x000000000020db30
Found by: stack scanning
52 <binary_name_replaced>.exe!tracked_objects::ThreadData::TallyRunOnNamedThreadIfTracking(base::TrackingInfo const &,tracked_objects::TaskStopwatch const &) + 0x9b
rip = 0x000000013fc42b2c rsp = 0x000000000020db80
Found by: stack scanning
53 <binary_name_replaced>.exe!tracked_objects::TaskStopwatch::Stop() + 0x8a
rip = 0x000000013fc4281b rsp = 0x000000000020dbb0
Found by: stack scanning
54 <binary_name_replaced>.exe!base::debug::TaskAnnotator::RunTask(char const *,base::PendingTask *) + 0x1e9
rip = 0x000000013fc54f4a rsp = 0x000000000020dbe0
Found by: stack scanning
55 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x000000000020dc10
Found by: stack scanning
56 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x000000000020dc40
Found by: stack scanning
57 <binary_name_replaced>.exe!base::internal::InvokeHelper<1,void>::MakeItSo<void ( blink::scheduler::TaskQueueManager::*const &)(base::TimeTicks,bool),base::WeakPtr<blink::scheduler::TaskQueueManager> const &,base::TimeTicks const &,bool const &>(void ( blink::scheduler::TaskQueueManager::*const &)(base::TimeTicks,bool),base::WeakPtr<blink::scheduler::TaskQueueManager> const &,base::TimeTicks const &,bool const &) + 0x6f
rip = 0x00000001421d396c rsp = 0x000000000020dcb0
Found by: stack scanning
58 <binary_name_replaced>.exe!blink::scheduler::TaskQueueManager::DidQueueTask(blink::scheduler::internal::TaskQueueImpl::Task const &) + 0x13
rip = 0x00000001421d5920 rsp = 0x000000000020dce8
Found by: stack scanning
59 <binary_name_replaced>.exe!base::debug::TaskAnnotator::RunTask(char const *,base::PendingTask *) + 0x168
rip = 0x000000013fc54ec9 rsp = 0x000000000020dd00
Found by: stack scanning
60 <binary_name_replaced>.exe!url::`anonymous namespace'::DoResolveRelative<char> [url_util.cc : 305 + 0xe]
rip = 0x000000013fd16595 rsp = 0x000000000020dd50
Found by: stack scanning
61 <binary_name_replaced>.exe!blink::scheduler::RealTimeDomain::MaybeAdvanceTime() + 0xe7
rip = 0x000000014228cdd8 rsp = 0x000000000020dd90
Found by: stack scanning
62 <binary_name_replaced>.exe!base::MessageLoop::RunTask(base::PendingTask *) + 0x556
rip = 0x000000013fbfd2c7 rsp = 0x000000000020de00
Found by: stack scanning
63 cryptbase.dll + 0x1b3f
rip = 0x000007fefcb91b40 rsp = 0x000000000020de70
Found by: stack scanning
64 node.dll!v8::internal::Assembler::immediate_arithmetic_op(unsigned char,v8::internal::Register,v8::internal::Immediate,int) [assembler-x64.cc : 594 + 0xc]
rip = 0x000007feeb0d1949 rsp = 0x000000000020df60
Found by: stack scanning
65 ntdll.dll + 0x1103c7
rip = 0x00000000771503c8 rsp = 0x000000000020df68
Found by: stack scanning
66 cryptbase.dll + 0x1b3f
rip = 0x000007fefcb91b40 rsp = 0x000000000020df90
Found by: stack scanning
67 ntdll.dll + 0x4dd47
rip = 0x000000007708dd48 rsp = 0x000000000020dfa0
Found by: stack scanning
68 ntdll.dll + 0x4e049
rip = 0x000000007708e04a rsp = 0x000000000020e040
Found by: stack scanning
69 <binary_name_replaced>.exe!ShimMalloc [allocator_shim.cc : 177 + 0x7]
rip = 0x000000013fbb3535 rsp = 0x000000000020e0b0
Found by: stack scanning
70 <binary_name_replaced>.exe!operator new(unsigned __int64) [new_scalar.cpp : 19 + 0x7]
rip = 0x0000000142bd309d rsp = 0x000000000020e0e0
Found by: stack scanning
71 <binary_name_replaced>.exe!std::_Allocate(unsigned __int64,unsigned __int64,bool) [xmemory0 : 83 + 0x4]
rip = 0x000000013f927ed3 rsp = 0x000000000020e110
Found by: stack scanning
72 ntdll.dll + 0x1103c7
rip = 0x00000000771503c8 rsp = 0x000000000020e128
Found by: stack scanning
73 <binary_name_replaced>.exe!std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Copy(unsigned __int64,unsigned __int64) [xstring : 2196 + 0x10]
rip = 0x000000013f928010 rsp = 0x000000000020e140
Found by: stack scanning
74 ntdll.dll + 0x4dd47
rip = 0x000000007708dd48 rsp = 0x000000000020e160
Found by: stack scanning
75 <binary_name_replaced>.exe!__crt_stdio_output::string_output_adapter<char>::write_string(char const * const,int,int * const,__crt_deferred_errno_cache &) [corecrt_internal_stdio_output.h : 269 + 0x11]
rip = 0x0000000142bfc4a6 rsp = 0x000000000020e180
Found by: stack scanning
76 cryptbase.dll + 0x1a27
rip = 0x000007fefcb91a28 rsp = 0x000000000020e210
Found by: stack scanning
77 <binary_name_replaced>.exe!__crt_stdio_output::output_processor<char,__crt_stdio_output::string_output_adapter<char>,__crt_stdio_output::format_validation_base<char,__crt_stdio_output::string_output_adapter<char> > >::state_case_normal() [corecrt_internal_stdio_output.h : 1689 + 0x4]
rip = 0x0000000142beff7c rsp = 0x000000000020e230
Found by: stack scanning
78 <binary_name_replaced>.exe!media::PopulateYUVToRGBTable(double const (* const)[3],bool,short *) + 0x140
rip = 0x0000000140de8b4d rsp = 0x000000000020e240
Found by: stack scanning
Thread 1
0 ntdll.dll + 0x4bdca
rbx = 0x000000000383faf8 r12 = 0x000000000000019c
r13 = 0x0000000000285c50 r14 = 0x0000000000000000
r15 = 0x0000000000000000 rip = 0x000000007708bdca
rsp = 0x000000000383fa18 rbp = 0x000000000383fbc0
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x16ac
rip = 0x000007fefcea16ad rsp = 0x000000000383fa20
rbp = 0x000000000383fbc0
Found by: stack scanning
2 <binary_name_replaced>.exe!base::ThreadIdNameManager::SetName(unsigned long,std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0xfa
rip = 0x000000013fc3cf6b rsp = 0x000000000383fa50
rbp = 0x000000000383fbc0
Found by: stack scanning
3 kernel32.dll + 0x9990
rip = 0x0000000076f29991 rsp = 0x000000000383fa80
rbp = 0x000000000383fbc0
Found by: stack scanning
4 KERNELBASE.dll + 0x18d9
rip = 0x000007fefcea18da rsp = 0x000000000383fa90
rbp = 0x000000000383fbc0
Found by: stack scanning
5 <binary_name_replaced>.exe!sandbox::BrokerServicesBase::TargetEventsThread(void *) [broker_services.cc : 172 + 0x2c]
rip = 0x00000001402b4a28 rsp = 0x000000000383fac0
rbp = 0x000000000383fbc0
Found by: stack scanning
Thread 2
0 ntdll.dll + 0x4bdca
rbx = 0x0000000003a9f9d0 r12 = 0x00000000ffffffff
r13 = 0x0000000000000000 r14 = 0x0000000000000000
r15 = 0x0000000000000000 rip = 0x000000007708bdca
rsp = 0x0000000003a9f8c8 rbp = 0x0000000003a9fad0
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x16ac
rip = 0x000007fefcea16ad rsp = 0x0000000003a9f8d0
rbp = 0x0000000003a9fad0
Found by: stack scanning
2 kernel32.dll + 0x9990
rip = 0x0000000076f29991 rsp = 0x0000000003a9f930
rbp = 0x0000000003a9fad0
Found by: stack scanning
3 ntdll.dll + 0x4e049
rip = 0x000000007708e04a rsp = 0x0000000003a9f950
rbp = 0x0000000003a9fad0
Found by: stack scanning
4 <binary_name_replaced>.exe!base::MessagePumpForIO::WaitForIOCompletion(unsigned long,base::MessagePumpForIO::IOHandler *) + 0x82
rip = 0x000000013fc56fa3 rsp = 0x0000000003a9f970
rbp = 0x0000000003a9fad0
Found by: stack scanning
5 kernel32.dll + 0x9990
rip = 0x0000000076f29991 rsp = 0x0000000003a9f990
rbp = 0x0000000003a9fad0
Found by: stack scanning
6 <binary_name_replaced>.exe!base::MessageLoop::DoIdleWork() + 0xd
rip = 0x000000013fbfbb2e rsp = 0x0000000003a9f9a0
rbp = 0x0000000003a9fad0
Found by: stack scanning
7 <binary_name_replaced>.exe!base::MessagePumpForIO::DoRunLoop() + 0x139
rip = 0x000000013fc5637a rsp = 0x0000000003a9f9d0
rbp = 0x0000000003a9fad0
Found by: stack scanning
8 ntdll.dll + 0x4dd47
rip = 0x000000007708dd48 rsp = 0x0000000003a9fa40
rbp = 0x0000000003a9fad0
Found by: stack scanning
9 ntdll.dll + 0x1103c7
rip = 0x00000000771503c8 rsp = 0x0000000003a9fae8
Found by: stack scanning
10 ntdll.dll + 0x4dd47
rip = 0x000000007708dd48 rsp = 0x0000000003a9fb20
Found by: stack scanning
11 <binary_name_replaced>.exe!ShimMalloc [allocator_shim.cc : 177 + 0x7]
rip = 0x000000013fbb3535 rsp = 0x0000000003a9fb50
Found by: stack scanning
12 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000003a9fb80
Found by: stack scanning
13 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x0000000003a9fbb0
Found by: stack scanning
14 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000003a9fbc0
Found by: stack scanning
15 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x0000000003a9fbf0
Found by: stack scanning
16 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x000000013fc41342 rsp = 0x0000000003a9fc10
Found by: stack scanning
17 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x000000013fbf7ea4 rsp = 0x0000000003a9fc20
Found by: stack scanning
18 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000013fbf831b rsp = 0x0000000003a9fc30
Found by: stack scanning
19 <binary_name_replaced>.exe!base::MessagePumpWin::Run(base::MessagePump::Delegate *) + 0x53
rip = 0x000000013fc56d54 rsp = 0x0000000003a9fc60
Found by: stack scanning
20 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000013fbf879e rsp = 0x0000000003a9fcb0
Found by: stack scanning
21 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x000000013fbf83f8 rsp = 0x0000000003a9fcd0
Found by: stack scanning
22 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000013fbdcec2 rsp = 0x0000000003a9fd00
Found by: stack scanning
23 <binary_name_replaced>.exe!base::win::VerifierTraits::StartTracking(void *,void const *,void const *,void const *) + 0x0
rip = 0x000000013fbb6201 rsp = 0x0000000003a9fd60
Found by: stack scanning
24 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000013fbde8aa rsp = 0x0000000003a9fda0
Found by: stack scanning
25 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000003a9fe10
Found by: stack scanning
26 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000003a9fe40
Found by: stack scanning
Thread 3
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000003c8f6e8
r13 = 0x0000000000000000 r14 = 0x000000000030b880
r15 = 0x00000000000003e8 rip = 0x000000007708bd7a
rsp = 0x0000000003c8f6b8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x0000000003c8f6c0
Found by: stack scanning
2 <binary_name_replaced>.exe!base::MessageLoop::DoDelayedWork(base::TimeTicks *) + 0x4a
rip = 0x000000013fbfba1b rsp = 0x0000000003c8f6e0
Found by: stack scanning
3 <binary_name_replaced>.exe!base::WaitableEvent::TimedWait(base::TimeDelta const &) + 0x78
rip = 0x000000013fc3a3c9 rsp = 0x0000000003c8f760
Found by: stack scanning
4 <binary_name_replaced>.exe!base::MessagePumpDefault::Run(base::MessagePump::Delegate *) + 0x10e
rip = 0x000000013fc574cf rsp = 0x0000000003c8f7b0
Found by: stack scanning
5 <binary_name_replaced>.exe!operator new(unsigned __int64) [new_scalar.cpp : 19 + 0x7]
rip = 0x0000000142bd309d rsp = 0x0000000003c8f7d0
Found by: stack scanning
6 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000003c8f7f0
Found by: stack scanning
7 <binary_name_replaced>.exe!std::allocator<std::_List_unchecked_iterator<std::_List_val<std::_List_simple_types<std::pair<tracked_objects::Location const ,tracked_objects::Births *> > > > >::allocate(unsigned __int64) + 0x5e
rip = 0x000000013fc43a5f rsp = 0x0000000003c8f800
Found by: stack scanning
8 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x0000000003c8f820
Found by: stack scanning
9 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000003c8f830
Found by: stack scanning
10 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x0000000003c8f860
Found by: stack scanning
11 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x000000013fc41342 rsp = 0x0000000003c8f880
Found by: stack scanning
12 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x000000013fbf7ea4 rsp = 0x0000000003c8f890
Found by: stack scanning
13 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000013fbf831b rsp = 0x0000000003c8f8a0
Found by: stack scanning
14 <binary_name_replaced>.exe!tracked_objects::ThreadData::Get() + 0x20
rip = 0x000000013fc41031 rsp = 0x0000000003c8f8c0
Found by: stack scanning
15 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Get() + 0x13
rip = 0x000000013fbf7e54 rsp = 0x0000000003c8f8e0
Found by: stack scanning
16 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000013fbf879e rsp = 0x0000000003c8f920
Found by: stack scanning
17 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x000000013fbf83f8 rsp = 0x0000000003c8f940
Found by: stack scanning
18 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000013fbdcec2 rsp = 0x0000000003c8f970
Found by: stack scanning
19 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000013fbde8aa rsp = 0x0000000003c8fa10
Found by: stack scanning
20 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000003c8fa80
Found by: stack scanning
21 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000003c8fab0
Found by: stack scanning
Thread 4
0 ntdll.dll + 0x4c2ea
rbx = 0x0000000000000000 r12 = 0x000000007713f500
r13 = 0x0000000000000000 r14 = 0x000000007713f4e0
r15 = 0x000000007713f578 rip = 0x000000007708c2ea
rsp = 0x0000000003e3f7e8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1a3c6
rip = 0x000000007705a3c7 rsp = 0x0000000003e3f7f0
Found by: stack scanning
2 ntdll.dll + 0xff54f
rip = 0x000000007713f550 rsp = 0x0000000003e3f810
Found by: stack scanning
Thread 5
0 ntdll.dll + 0x4d63a
rbx = 0x0000000000260470 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x0000000003fbfb98 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x0000000003fbfba0
Found by: stack scanning
2 ntdll.dll + 0x12d4af
rip = 0x000000007716d4b0 rsp = 0x0000000003fbfc30
Found by: stack scanning
Thread 6
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x00000000003267f0
r15 = 0x00000000000003e8 rip = 0x000000007708bd7a
rsp = 0x000000000411f8f8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x000000000411f900
Found by: stack scanning
2 <binary_name_replaced>.exe!base::WaitableEvent::Wait() + 0x29
rip = 0x000000013fc3a41a rsp = 0x000000000411f9a0
Found by: stack scanning
3 <binary_name_replaced>.exe!base::MessagePumpDefault::Run(base::MessagePump::Delegate *) + 0x9d
rip = 0x000000013fc5745e rsp = 0x000000000411f9f0
Found by: stack scanning
4 <binary_name_replaced>.exe!operator new(unsigned __int64) [new_scalar.cpp : 19 + 0x7]
rip = 0x0000000142bd309d rsp = 0x000000000411fa10
Found by: stack scanning
5 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x000000000411fa30
Found by: stack scanning
6 <binary_name_replaced>.exe!std::allocator<std::_List_unchecked_iterator<std::_List_val<std::_List_simple_types<std::pair<tracked_objects::Location const ,tracked_objects::Births *> > > > >::allocate(unsigned __int64) + 0x5e
rip = 0x000000013fc43a5f rsp = 0x000000000411fa40
Found by: stack scanning
7 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x000000000411fa60
Found by: stack scanning
8 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x000000000411fa70
Found by: stack scanning
9 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x000000000411faa0
Found by: stack scanning
10 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x000000013fc41342 rsp = 0x000000000411fac0
Found by: stack scanning
11 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x000000013fbf7ea4 rsp = 0x000000000411fad0
Found by: stack scanning
12 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000013fbf831b rsp = 0x000000000411fae0
Found by: stack scanning
13 <binary_name_replaced>.exe!tracked_objects::ThreadData::Get() + 0x20
rip = 0x000000013fc41031 rsp = 0x000000000411fb00
Found by: stack scanning
14 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Get() + 0x13
rip = 0x000000013fbf7e54 rsp = 0x000000000411fb20
Found by: stack scanning
15 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000013fbf879e rsp = 0x000000000411fb60
Found by: stack scanning
16 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x000000013fbf83f8 rsp = 0x000000000411fb80
Found by: stack scanning
17 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000013fbdcec2 rsp = 0x000000000411fbb0
Found by: stack scanning
18 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000013fbde8aa rsp = 0x000000000411fc50
Found by: stack scanning
19 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x000000000411fcc0
Found by: stack scanning
20 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x000000000411fcf0
Found by: stack scanning
Thread 7
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x00000000002b5630
r13 = 0x0000000000000000 r14 = 0x00000000003239b0
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x000000000436f9b8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc105c
rip = 0x000000007710105d rsp = 0x000000000436f9c0
Found by: stack scanning
2 kernel32.dll + 0x21a35
rip = 0x0000000076f41a36 rsp = 0x000000000436fa00
Found by: stack scanning
3 kernel32.dll + 0x4b6a7
rip = 0x0000000076f6b6a8 rsp = 0x000000000436fa30
Found by: stack scanning
4 <binary_name_replaced>.exe!base::internal::LockImpl::Lock() + 0x30
rip = 0x000000013fbd2121 rsp = 0x000000000436fa50
Found by: stack scanning
5 <binary_name_replaced>.exe!base::ConditionVariable::Wait() + 0x3c
rip = 0x000000013fc578fd rsp = 0x000000000436fa70
Found by: stack scanning
6 <binary_name_replaced>.exe!content::CategorizedWorkerPool::Run(std::vector<cc::TaskCategory,std::allocator<cc::TaskCategory> > const &,base::ConditionVariable *) [categorized_worker_pool.cc : 240 + 0x7]
rip = 0x000000014045e00a rsp = 0x000000000436faa0
Found by: stack scanning
7 <binary_name_replaced>.exe!base::SimpleThread::ThreadMain() + 0xa9
rip = 0x000000013fc58bca rsp = 0x000000000436fad0
Found by: stack scanning
8 <binary_name_replaced>.exe!base::allocator::WinHeapFree(void *) [winheap_stubs_win.cc : 42 + 0x12]
rip = 0x000000013fc269dc rsp = 0x000000000436fb00
Found by: stack scanning
9 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000013fbde8aa rsp = 0x000000000436fb30
Found by: stack scanning
10 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x000000000436fba0
Found by: stack scanning
11 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x000000000436fbd0
Found by: stack scanning
Thread 8
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x00000000002b5640
r13 = 0x0000000000000000 r14 = 0x0000000000323910
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x00000000044dfd78 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc105c
rip = 0x000000007710105d rsp = 0x00000000044dfd80
Found by: stack scanning
2 <binary_name_replaced>.exe!tracked_objects::TrackedTime::Now() + 0x24
rip = 0x000000013fc6aa55 rsp = 0x00000000044dfda0
Found by: stack scanning
3 <binary_name_replaced>.exe!tracked_objects::ThreadData::PushToHeadOfList() + 0x121
rip = 0x000000013fc41732 rsp = 0x00000000044dfdd0
Found by: stack scanning
4 kernel32.dll + 0x4b6a7
rip = 0x0000000076f6b6a8 rsp = 0x00000000044dfdf0
Found by: stack scanning
5 <binary_name_replaced>.exe!base::internal::LockImpl::Lock() + 0x30
rip = 0x000000013fbd2121 rsp = 0x00000000044dfe10
Found by: stack scanning
6 <binary_name_replaced>.exe!base::ConditionVariable::Wait() + 0x3c
rip = 0x000000013fc578fd rsp = 0x00000000044dfe30
Found by: stack scanning
7 <binary_name_replaced>.exe!content::CategorizedWorkerPool::Run(std::vector<cc::TaskCategory,std::allocator<cc::TaskCategory> > const &,base::ConditionVariable *) [categorized_worker_pool.cc : 240 + 0x7]
rip = 0x000000014045e00a rsp = 0x00000000044dfe60
Found by: stack scanning
8 <binary_name_replaced>.exe!base::SimpleThread::ThreadMain() + 0xa9
rip = 0x000000013fc58bca rsp = 0x00000000044dfe90
Found by: stack scanning
9 <binary_name_replaced>.exe!base::allocator::WinHeapFree(void *) [winheap_stubs_win.cc : 42 + 0x12]
rip = 0x000000013fc269dc rsp = 0x00000000044dfec0
Found by: stack scanning
10 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000013fbde8aa rsp = 0x00000000044dfef0
Found by: stack scanning
11 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x00000000044dff60
Found by: stack scanning
12 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x00000000044dff90
Found by: stack scanning
Thread 9
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x0000000000000000
r15 = 0x0000000000000000 rip = 0x000000007708bd7a
rsp = 0x000000000475fc08 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x000000000475fc10
Found by: stack scanning
2 <binary_name_replaced>.exe!base::TaskRunner::PostTask(tracked_objects::Location const &,base::Callback<void ,1,1> const &) + 0x16
rip = 0x000000013fbcac47 rsp = 0x000000000475fc30
Found by: stack scanning
3 node.dll!uv_sem_wait [thread.c : 355 + 0xb]
rip = 0x000007feeb9e4eb8 rsp = 0x000000000475fcb0
Found by: stack scanning
4 <binary_name_replaced>.exe!atom::NodeBindings::EmbedThreadRunner(void *) [node_bindings.cc : 285 + 0x7]
rip = 0x000000013f993afd rsp = 0x000000000475fce0
Found by: stack scanning
5 <binary_name_replaced>.exe + 0x183ec7
rip = 0x000000013f993ec8 rsp = 0x000000000475fce8
Found by: stack scanning
6 node.dll!_acrt_AppPolicyGetThreadInitializationTypeInternal [winapi_thunks.cpp : 766 + 0x1e]
rip = 0x000007feeba85440 rsp = 0x000000000475fd00
Found by: stack scanning
7 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007feeb9e42c1 rsp = 0x000000000475fd10
Found by: stack scanning
8 node.dll!_acrt_get_begin_thread_init_policy [win_policies.cpp : 105 + 0x17]
rip = 0x000007feeba87f80 rsp = 0x000000000475fd30
Found by: stack scanning
9 <binary_name_replaced>.exe + 0x183ac7
rip = 0x000000013f993ac8 rsp = 0x000000000475fd38
Found by: stack scanning
10 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feeba59528 rsp = 0x000000000475fd60
Found by: stack scanning
11 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x000000000475fd90
Found by: stack scanning
12 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x000000000475fdc0
Found by: stack scanning
Thread 10
0 ntdll.dll + 0x4d63a
rbx = 0x0000000000260fb0 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x0000000004d1f8f8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x0000000004d1f900
Found by: stack scanning
Thread 11
0 ntdll.dll + 0x4d63a
rbx = 0x0000000000260fb0 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x0000000004f8f918 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x0000000004f8f920
Found by: stack scanning
Thread 12
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x000007feec0276d8
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x0000000004bdf7a8 rbp = 0x000007feec027680
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc0153
rip = 0x0000000077100154 rsp = 0x0000000004bdf7b0
rbp = 0x000007feec027680
Found by: stack scanning
2 kernel32.dll + 0x4b6f7
rip = 0x0000000076f6b6f8 rsp = 0x0000000004bdf810
rbp = 0x000007feec027680
Found by: stack scanning
3 node.dll!uv_cond_wait [thread.c : 573 + 0x5]
rip = 0x000007feeb9e4938 rsp = 0x0000000004bdf840
rbp = 0x000007feec027680
Found by: stack scanning
4 node.dll!worker [threadpool.c : 75 + 0x18]
rip = 0x000007feeb9f4660 rsp = 0x0000000004bdf870
rbp = 0x000007feec027680
Found by: stack scanning
5 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007feeb9e42c1 rsp = 0x0000000004bdf8a0
rbp = 0x000007feec027680
Found by: stack scanning
6 node.dll!_acrt_getptd [per_thread_data.cpp : 283 + 0xa4]
rip = 0x000007feeba84527 rsp = 0x0000000004bdf8c0
rbp = 0x000007feec027680
Found by: stack scanning
7 node.dll + 0xb84603
rip = 0x000007feeb9f4604 rsp = 0x0000000004bdf8c8
rbp = 0x000007feec027680
Found by: stack scanning
8 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feeba59528 rsp = 0x0000000004bdf8f0
rbp = 0x000007feec027680
Found by: stack scanning
9 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000004bdf920
rbp = 0x000007feec027680
Found by: stack scanning
10 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000004bdf950
rbp = 0x000007feec027680
Found by: stack scanning
Thread 13
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x000007feec0276d8
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x0000000005d7f768 rbp = 0x000007feec027680
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc0153
rip = 0x0000000077100154 rsp = 0x0000000005d7f770
rbp = 0x000007feec027680
Found by: stack scanning
2 KERNELBASE.dll + 0x171f
rip = 0x000007fefcea1720 rsp = 0x0000000005d7f7c0
rbp = 0x000007feec027680
Found by: stack scanning
3 kernel32.dll + 0x4b6f7
rip = 0x0000000076f6b6f8 rsp = 0x0000000005d7f7d0
rbp = 0x000007feec027680
Found by: stack scanning
4 node.dll!uv_cond_wait [thread.c : 573 + 0x5]
rip = 0x000007feeb9e4938 rsp = 0x0000000005d7f800
rbp = 0x000007feec027680
Found by: stack scanning
5 node.dll!worker [threadpool.c : 75 + 0x18]
rip = 0x000007feeb9f4660 rsp = 0x0000000005d7f830
rbp = 0x000007feec027680
Found by: stack scanning
6 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007feeb9e42c1 rsp = 0x0000000005d7f860
rbp = 0x000007feec027680
Found by: stack scanning
7 node.dll!_acrt_getptd [per_thread_data.cpp : 283 + 0xa4]
rip = 0x000007feeba84527 rsp = 0x0000000005d7f880
rbp = 0x000007feec027680
Found by: stack scanning
8 node.dll + 0xb84603
rip = 0x000007feeb9f4604 rsp = 0x0000000005d7f888
rbp = 0x000007feec027680
Found by: stack scanning
9 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feeba59528 rsp = 0x0000000005d7f8b0
rbp = 0x000007feec027680
Found by: stack scanning
10 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000005d7f8e0
rbp = 0x000007feec027680
Found by: stack scanning
11 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000005d7f910
rbp = 0x000007feec027680
Found by: stack scanning
Thread 14
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x000007feec0276d8
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x0000000005effc78 rbp = 0x000007feec027680
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc0153
rip = 0x0000000077100154 rsp = 0x0000000005effc80
rbp = 0x000007feec027680
Found by: stack scanning
2 KERNELBASE.dll + 0x171f
rip = 0x000007fefcea1720 rsp = 0x0000000005effcd0
rbp = 0x000007feec027680
Found by: stack scanning
3 kernel32.dll + 0x4b6f7
rip = 0x0000000076f6b6f8 rsp = 0x0000000005effce0
rbp = 0x000007feec027680
Found by: stack scanning
4 node.dll!uv_cond_wait [thread.c : 573 + 0x5]
rip = 0x000007feeb9e4938 rsp = 0x0000000005effd10
rbp = 0x000007feec027680
Found by: stack scanning
5 node.dll!worker [threadpool.c : 75 + 0x18]
rip = 0x000007feeb9f4660 rsp = 0x0000000005effd40
rbp = 0x000007feec027680
Found by: stack scanning
6 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007feeb9e42c1 rsp = 0x0000000005effd70
rbp = 0x000007feec027680
Found by: stack scanning
7 node.dll!_acrt_getptd [per_thread_data.cpp : 283 + 0xa4]
rip = 0x000007feeba84527 rsp = 0x0000000005effd90
rbp = 0x000007feec027680
Found by: stack scanning
8 node.dll + 0xb84603
rip = 0x000007feeb9f4604 rsp = 0x0000000005effd98
rbp = 0x000007feec027680
Found by: stack scanning
9 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feeba59528 rsp = 0x0000000005effdc0
rbp = 0x000007feec027680
Found by: stack scanning
10 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000005effdf0
rbp = 0x000007feec027680
Found by: stack scanning
11 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000005effe20
rbp = 0x000007feec027680
Found by: stack scanning
Thread 15
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x000007feec0276d8
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x000000000606fa78 rbp = 0x000007feec027680
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc0153
rip = 0x0000000077100154 rsp = 0x000000000606fa80
rbp = 0x000007feec027680
Found by: stack scanning
2 KERNELBASE.dll + 0x171f
rip = 0x000007fefcea1720 rsp = 0x000000000606fad0
rbp = 0x000007feec027680
Found by: stack scanning
3 kernel32.dll + 0x4b6f7
rip = 0x0000000076f6b6f8 rsp = 0x000000000606fae0
rbp = 0x000007feec027680
Found by: stack scanning
4 node.dll!uv_cond_wait [thread.c : 573 + 0x5]
rip = 0x000007feeb9e4938 rsp = 0x000000000606fb10
rbp = 0x000007feec027680
Found by: stack scanning
5 node.dll!worker [threadpool.c : 75 + 0x18]
rip = 0x000007feeb9f4660 rsp = 0x000000000606fb40
rbp = 0x000007feec027680
Found by: stack scanning
6 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007feeb9e42c1 rsp = 0x000000000606fb70
rbp = 0x000007feec027680
Found by: stack scanning
7 node.dll!_acrt_getptd [per_thread_data.cpp : 283 + 0xa4]
rip = 0x000007feeba84527 rsp = 0x000000000606fb90
rbp = 0x000007feec027680
Found by: stack scanning
8 node.dll + 0xb84603
rip = 0x000007feeb9f4604 rsp = 0x000000000606fb98
rbp = 0x000007feec027680
Found by: stack scanning
9 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feeba59528 rsp = 0x000000000606fbc0
rbp = 0x000007feec027680
Found by: stack scanning
10 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x000000000606fbf0
rbp = 0x000007feec027680
Found by: stack scanning
11 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x000000000606fc20
rbp = 0x000007feec027680
Found by: stack scanning
Thread 16
0 ntdll.dll + 0x4d63a
rbx = 0x0000000000260fb0 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x000000000617f7b8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x000000000617f7c0
Found by: stack scanning
Thread 17
0 ntdll.dll + 0x4d63a
rbx = 0x0000000000260fb0 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x000000000630fb08 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x000000000630fb10
Found by: stack scanning
Thread 18
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x000000000487ad70
r15 = 0x00000000000003e8 rip = 0x000000007708bd7a
rsp = 0x000000000655fa08 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x000000000655fa10
Found by: stack scanning
2 <binary_name_replaced>.exe!base::WaitableEvent::Wait() + 0x29
rip = 0x000000013fc3a41a rsp = 0x000000000655fab0
Found by: stack scanning
3 <binary_name_replaced>.exe!base::MessagePumpDefault::Run(base::MessagePump::Delegate *) + 0x9d
rip = 0x000000013fc5745e rsp = 0x000000000655fb00
Found by: stack scanning
4 <binary_name_replaced>.exe!ShimMalloc [allocator_shim.cc : 177 + 0x7]
rip = 0x000000013fbb3535 rsp = 0x000000000655fb10
Found by: stack scanning
5 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x000000000655fb40
Found by: stack scanning
6 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x000000000655fb70
Found by: stack scanning
7 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x000000000655fb80
Found by: stack scanning
8 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x000000000655fbb0
Found by: stack scanning
9 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x000000013fc41342 rsp = 0x000000000655fbd0
Found by: stack scanning
10 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x000000013fbf7ea4 rsp = 0x000000000655fbe0
Found by: stack scanning
11 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000013fbf831b rsp = 0x000000000655fbf0
Found by: stack scanning
12 <binary_name_replaced>.exe!tracked_objects::ThreadData::Get() + 0x20
rip = 0x000000013fc41031 rsp = 0x000000000655fc10
Found by: stack scanning
13 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Get() + 0x13
rip = 0x000000013fbf7e54 rsp = 0x000000000655fc30
Found by: stack scanning
14 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000013fbf879e rsp = 0x000000000655fc70
Found by: stack scanning
15 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x000000013fbf83f8 rsp = 0x000000000655fc90
Found by: stack scanning
16 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000013fbdcec2 rsp = 0x000000000655fcc0
Found by: stack scanning
17 <binary_name_replaced>.exe!base::win::VerifierTraits::StartTracking(void *,void const *,void const *,void const *) + 0x0
rip = 0x000000013fbb6201 rsp = 0x000000000655fd20
Found by: stack scanning
18 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000013fbde8aa rsp = 0x000000000655fd60
Found by: stack scanning
19 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x000000000655fdd0
Found by: stack scanning
20 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x000000000655fe00
Found by: stack scanning
Thread 19
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x00000000059782b0
r15 = 0x00000000000003e8 rip = 0x000000007708bd7a
rsp = 0x0000000007d7f438 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x0000000007d7f440
Found by: stack scanning
2 <binary_name_replaced>.exe!base::WaitableEvent::Wait() + 0x29
rip = 0x000000013fc3a41a rsp = 0x0000000007d7f4e0
Found by: stack scanning
3 <binary_name_replaced>.exe!base::MessagePumpDefault::Run(base::MessagePump::Delegate *) + 0x9d
rip = 0x000000013fc5745e rsp = 0x0000000007d7f530
Found by: stack scanning
4 <binary_name_replaced>.exe!ShimMalloc [allocator_shim.cc : 177 + 0x7]
rip = 0x000000013fbb3535 rsp = 0x0000000007d7f540
Found by: stack scanning
5 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000007d7f570
Found by: stack scanning
6 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x0000000007d7f5a0
Found by: stack scanning
7 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000007d7f5b0
Found by: stack scanning
8 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x000000013fbd9b5b rsp = 0x0000000007d7f5e0
Found by: stack scanning
9 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x000000013fc41342 rsp = 0x0000000007d7f600
Found by: stack scanning
10 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x000000013fbf7ea4 rsp = 0x0000000007d7f610
Found by: stack scanning
11 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000013fbf831b rsp = 0x0000000007d7f620
Found by: stack scanning
12 <binary_name_replaced>.exe!tracked_objects::ThreadData::Get() + 0x20
rip = 0x000000013fc41031 rsp = 0x0000000007d7f640
Found by: stack scanning
13 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Get() + 0x13
rip = 0x000000013fbf7e54 rsp = 0x0000000007d7f660
Found by: stack scanning
14 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000013fbf879e rsp = 0x0000000007d7f6a0
Found by: stack scanning
15 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x000000013fbf83f8 rsp = 0x0000000007d7f6c0
Found by: stack scanning
16 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000013fbdcec2 rsp = 0x0000000007d7f6f0
Found by: stack scanning
17 <binary_name_replaced>.exe!base::win::VerifierTraits::StartTracking(void *,void const *,void const *,void const *) + 0x0
rip = 0x000000013fbb6201 rsp = 0x0000000007d7f750
Found by: stack scanning
18 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000013fbde8aa rsp = 0x0000000007d7f790
Found by: stack scanning
19 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000007d7f800
Found by: stack scanning
20 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000007d7f830
Found by: stack scanning
Thread 20
0 ntdll.dll + 0x4d63a
rbx = 0x0000000000260fb0 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x0000000007c6fc38 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x0000000007c6fc40
Found by: stack scanning
2 ntdll.dll + 0x12d4af
rip = 0x000000007716d4b0 rsp = 0x0000000007c6fcc8
Found by: stack scanning
Loaded modules:
0x76e20000 - 0x76f19fff user32.dll 6.1.7601.23594
0x76f20000 - 0x7703efff kernel32.dll 6.1.7601.23796
0x77040000 - 0x771e9fff ntdll.dll 6.1.7601.23796
0x77200000 - 0x77202fff normaliz.dll 6.1.7600.16385
0x77210000 - 0x77216fff psapi.dll 6.1.7600.16385
0x13f810000 - 0x144665fff <binary_name_replaced>.exe 1.6.8.0 (main)
0x7feeae70000 - 0x7feec110fff node.dll 7.4.0.0
0x7fef1ed0000 - 0x7fef2066fff DWrite.dll 6.2.9200.22082
0x7fef3ef0000 - 0x7fef42bbfff ffmpeg.dll ???
0x7fef5ea0000 - 0x7fef5efcfff dxgi.dll 6.2.9200.16492
0x7fef6280000 - 0x7fef628ffff wshbth.dll 6.1.7601.17514
0x7fef6290000 - 0x7fef629afff winrnr.dll 6.1.7600.16385
0x7fef62a0000 - 0x7fef62b8fff pnrpnsp.dll 6.1.7600.16385
0x7fef62c0000 - 0x7fef62d4fff NapiNSP.dll 6.1.7600.16385
0x7fef6bf0000 - 0x7fef6c2afff winmm.dll 6.1.7600.16385
0x7fef7ab0000 - 0x7fef7ab2fff api-ms-win-core-synch-l1-2-0.DLL 10.0.10586.788
0x7fef7ac0000 - 0x7fef7ac6fff msimg32.dll 6.1.7600.16385
0x7fef8fe0000 - 0x7fef9033fff oleacc.dll 7.0.0.0
0x7fef9040000 - 0x7fef90f9fff UIAutomationCore.DLL 7.0.0.0
0x7fef9190000 - 0x7fef9200fff winspool.drv 6.1.7601.17514
0x7fef9410000 - 0x7fef9534fff dbghelp.dll 6.1.7601.17514
0x7fefa0a0000 - 0x7fefa0b7fff dhcpcsvc.dll 6.1.7600.16385
0x7fefa0c0000 - 0x7fefa0d0fff dhcpcsvc6.DLL 6.1.7600.16385
0x7fefa420000 - 0x7fefa42afff winnsi.dll 6.1.7600.16385
0x7fefa430000 - 0x7fefa456fff IPHLPAPI.DLL 6.1.7601.17514
0x7fefa990000 - 0x7fefa9a4fff nlaapi.dll 6.1.7601.17964
0x7fefab80000 - 0x7fefab9bfff fontsub.dll 6.1.7601.23717
0x7fefb050000 - 0x7fefb067fff dwmapi.dll 6.1.7600.16385
0x7fefb0e0000 - 0x7fefb10bfff powrprof.dll 6.1.7600.16385
0x7fefb570000 - 0x7fefb5c5fff uxtheme.dll 6.1.7600.16385
0x7fefb8f0000 - 0x7fefbae3fff comctl32.dll 6.10.7601.18837
0x7fefbe10000 - 0x7fefbe1bfff version.dll 6.1.7600.16385
0x7fefbee0000 - 0x7fefbee6fff WSHTCPIP.DLL 6.1.7600.16385
0x7fefc340000 - 0x7fefc39afff dnsapi.dll 6.1.7601.17570
0x7fefc4b0000 - 0x7fefc4b6fff wship6.dll 6.1.7600.16385
0x7fefc4c0000 - 0x7fefc514fff mswsock.dll 6.1.7601.23451
0x7fefc670000 - 0x7fefc691fff bcrypt.dll 6.1.7601.23796
0x7fefc6a0000 - 0x7fefc6effff ncrypt.dll 6.1.7601.23796
0x7fefcb30000 - 0x7fefcb86fff apphelp.dll 6.1.7601.17514
0x7fefcb90000 - 0x7fefcb9efff cryptbase.dll 6.1.7601.23796
0x7fefcd30000 - 0x7fefcd3efff profapi.dll 6.1.7600.16385
0x7fefcd40000 - 0x7fefcd4efff msasn1.dll 6.1.7601.17514
0x7fefcd50000 - 0x7fefcd69fff devobj.dll 6.1.7600.16385
0x7fefcd70000 - 0x7fefcd72fff api-ms-win-downlevel-normaliz-l1-1-0.dll 6.2.9200.16492
0x7fefcd80000 - 0x7fefcd9dfff userenv.dll 6.1.7601.17514
0x7fefcda0000 - 0x7fefcdd5fff cfgmgr32.dll 6.1.7601.17514
0x7fefcdf0000 - 0x7fefcdf3fff api-ms-win-downlevel-version-l1-1-0.dll 6.2.9200.16492
0x7fefcea0000 - 0x7fefcf09fff KERNELBASE.dll 6.1.7601.23796
0x7fefcf10000 - 0x7fefcf14fff api-ms-win-downlevel-advapi32-l1-1-0.dll 6.2.9200.16492
0x7fefd090000 - 0x7fefd093fff api-ms-win-downlevel-shlwapi-l1-1-0.dll 6.2.9200.16492
0x7fefd0e0000 - 0x7fefd0e3fff api-ms-win-downlevel-user32-l1-1-0.dll 6.2.9200.16492
0x7fefd0f0000 - 0x7fefd160fff shlwapi.dll 6.1.7601.17514
0x7fefd420000 - 0x7fefd43efff sechost.dll 6.1.7600.16385
0x7fefd440000 - 0x7fefd51afff advapi32.dll 6.1.7601.23796
0x7fefd520000 - 0x7fefd54dfff imm32.dll 6.1.7600.16385
0x7fefd5b0000 - 0x7fefd646fff comdlg32.dll 6.1.7601.17514
0x7fefd650000 - 0x7fefd719fff usp10.dll 1.626.7601.23688
0x7fefd720000 - 0x7fefd7befff msvcrt.dll 7.0.7601.17744
0x7fefd7c0000 - 0x7fefd8ecfff rpcrt4.dll 6.1.7601.23796
0x7fefd910000 - 0x7fefdb0bfff ole32.dll 6.1.7601.23775
0x7fefdb10000 - 0x7fefdc18fff msctf.dll 6.1.7601.23572
0x7fefdc20000 - 0x7fefe9a8fff shell32.dll 6.1.7601.18952
0x7fefe9b0000 - 0x7fefea89fff oleaut32.dll 6.1.7601.23775
0x7fefea90000 - 0x7fefea97fff nsi.dll 6.1.7600.16385
0x7fefeaa0000 - 0x7fefec76fff setupapi.dll 6.1.7601.17514
0x7fefec80000 - 0x7fefefa0fff wininet.dll 11.0.9600.18666
0x7fefefb0000 - 0x7fefeffcfff ws2_32.dll 6.1.7601.23451
0x7feff000000 - 0x7feff066fff gdi32.dll 6.1.7601.23764
0x7feff070000 - 0x7feff339fff iertutil.dll 11.0.9600.18666
0x7feff340000 - 0x7feff34dfff lpk.dll 6.1.7601.23717
```
</details>
<details>
<summary>Crash 2</summary>
```
Operating system: Windows NT
6.1.7601 Service Pack 1
CPU: amd64
family 6 model 61 stepping 4
2 CPUs
Crash reason: EXCEPTION_ACCESS_VIOLATION_WRITE
Crash address: 0x338
Assertion: Unknown assertion type 0x00000000
Thread 0 (crashed)
0 <binary_name_replaced>.exe!atom::AtomBindings::OnCallNextTick(uv_async_s *) [atom_bindings.cc : 146 + 0x5]
rbx = 0x0000000005566aa0 r12 = 0x0000000003b31d20
r13 = 0x00000107446da5c0 r14 = 0x00000477286819d8
r15 = 0x0000000000000001 rip = 0x000000013fdb5272
rsp = 0x00000000001bbd00 rbp = 0x000007fee9fa2390
Found by: given as instruction pointer in context
1 node.dll!uv_poll [core.c : 383 + 0x14]
rip = 0x000007fee9fa2390 rsp = 0x00000000001bbd20
rbp = 0x000007fee9fa2390
Found by: stack scanning
2 node.dll!uv_process_async_wakeup_req [async.c : 97 + 0x4]
rip = 0x000007fee9fa4196 rsp = 0x00000000001bbd50
rbp = 0x000007fee9fa2390
Found by: stack scanning
3 node.dll!uv_process_reqs [req-inl.h : 197 + 0xd]
rip = 0x000007fee9fa27d1 rsp = 0x00000000001bbd80
rbp = 0x000007fee9fa2390
Found by: stack scanning
4 <binary_name_replaced>.exe!mate::Locker::Locker(v8::Isolate *) [locker.cc : 10 + 0x5]
rip = 0x000000013fe0304c rsp = 0x00000000001bbda0
rbp = 0x000007fee9fa2390
Found by: stack scanning
5 node.dll!uv_run [core.c : 496 + 0x7]
rip = 0x000007fee9fa28d0 rsp = 0x00000000001bbdb0
rbp = 0x000007fee9fa2390
Found by: stack scanning
6 <binary_name_replaced>.exe!atom::NodeBindings::UvRunOnce() [node_bindings.cc : 257 + 0xd]
rip = 0x000000013fdf3fa2 rsp = 0x00000000001bbde0
rbp = 0x000007fee9fa2390
Found by: stack scanning
7 <binary_name_replaced>.exe!scoped_refptr<base::SingleThreadTaskRunner>::Release(base::SingleThreadTaskRunner *) [ref_counted.h : 406 + 0xe]
rip = 0x000000013fd926fd rsp = 0x00000000001bbe20
rbp = 0x000007fee9fa2390
Found by: stack scanning
8 <binary_name_replaced>.exe!atom::NodeBindings::LoadEnvironment(node::Environment *) [node_bindings.cc : 212 + 0x1a]
rip = 0x000000013fdf3d09 rsp = 0x00000000001bbe60
rbp = 0x000007fee9fa2390
Found by: stack scanning
9 <binary_name_replaced>.exe!atom::AtomRendererClient::DidCreateScriptContext(v8::Local<v8::Context>,content::RenderFrame *) [atom_renderer_client.cc : 118 + 0x9]
rip = 0x000000013fda295e rsp = 0x00000000001bbe90
rbp = 0x000007fee9fa2390
Found by: stack scanning
10 <binary_name_replaced>.exe!atom::AtomRenderFrameObserver::DidCreateScriptContext(v8::Local<v8::Context>,int,int) [atom_render_frame_observer.cc : 30 + 0x15]
rip = 0x000000013fe6c707 rsp = 0x00000000001bbec0
rbp = 0x000007fee9fa2390
Found by: stack scanning
11 <binary_name_replaced>.exe!content::RenderFrameImpl::didCreateScriptContext(blink::WebLocalFrame *,v8::Local<v8::Context>,int,int) [render_frame_impl.cc : 4418 + 0x1d]
rip = 0x00000001402c006b rsp = 0x00000000001bbef0
rbp = 0x000007fee9fa2390
Found by: stack scanning
12 <binary_name_replaced>.exe!blink::protocol::DictionaryValue::`scalar deleting destructor'(unsigned int) + 0x20
rip = 0x0000000142366f71 rsp = 0x00000000001bbf80
rbp = 0x000007fee9fa2390
Found by: stack scanning
13 <binary_name_replaced>.exe!blink::MainThreadDebugger::contextCreated(blink::ScriptState *,blink::LocalFrame *,blink::SecurityOrigin *) + 0x3d4
rip = 0x000000014202fee5 rsp = 0x00000000001bbfb0
rbp = 0x000007fee9fa2390
Found by: stack scanning
14 <binary_name_replaced>.exe!blink::FrameLoaderClientImpl::didCreateScriptContext(v8::Local<v8::Context>,int,int) [frameloaderclientimpl.cpp : 196 + 0x24]
rip = 0x0000000141e5ee8a rsp = 0x00000000001bc080
rbp = 0x000007fee9fa2390
Found by: stack scanning
15 <binary_name_replaced>.exe!blink::WindowProxy::initialize() [windowproxy.cpp : 287 + 0x27]
rip = 0x00000001420d0f7b rsp = 0x00000000001bc0c0
rbp = 0x000007fee9fa2390
Found by: stack scanning
16 <binary_name_replaced>.exe!blink::LayoutBox::updateBackgroundAttachmentFixedStatusAfterStyleChange() [layoutbox.cpp : 359 + 0xa]
rip = 0x0000000142092859 rsp = 0x00000000001bc100
rbp = 0x000007fee9fa2390
Found by: stack scanning
17 <binary_name_replaced>.exe!blink::ThreadHeap::allocate<blink::TextAutosizer>(unsigned __int64,bool) [heap.h : 615 + 0x64]
rip = 0x0000000141db4a49 rsp = 0x00000000001bc110
rbp = 0x000007fee9fa2390
Found by: stack scanning
18 <binary_name_replaced>.exe!blink::TextAutosizer::TextAutosizer(blink::Document const *) [textautosizer.cpp : 300 + 0x8]
rip = 0x0000000141f3ebaf rsp = 0x00000000001bc120
rbp = 0x000007fee9fa2390
Found by: stack scanning
19 <binary_name_replaced>.exe!blink::LayoutBox::styleDidChange(blink::StyleDifference,blink::ComputedStyle const *) [layoutbox.cpp : 318 + 0x7]
rip = 0x0000000142092229 rsp = 0x00000000001bc130
rbp = 0x000007fee9fa2390
Found by: stack scanning
20 <binary_name_replaced>.exe!blink::Document::textAutosizer() [document.cpp : 6181 + 0x1]
rip = 0x0000000141dd0200 rsp = 0x00000000001bc150
rbp = 0x000007fee9fa2390
Found by: stack scanning
21 <binary_name_replaced>.exe!blink::ThreadHeap::allocate<blink::RootFrameViewport>(unsigned __int64,bool) [heap.h : 615 + 0x64]
rip = 0x0000000141ea544d rsp = 0x00000000001bc1a0
rbp = 0x000007fee9fa2390
Found by: stack scanning
22 <binary_name_replaced>.exe!blink::ScriptController::windowProxy(blink::DOMWrapperWorld &) [scriptcontroller.cpp : 171 + 0x17]
rip = 0x0000000141e62f94 rsp = 0x00000000001bc200
rbp = 0x000007fee9fa2390
Found by: stack scanning
23 <binary_name_replaced>.exe!blink::ScriptController::initializeMainWorld() [scriptcontroller.cpp : 161 + 0xf]
rip = 0x0000000141e62975 rsp = 0x00000000001bc230
rbp = 0x000007fee9fa2390
Found by: stack scanning
24 <binary_name_replaced>.exe!blink::Document::initialize() [document.cpp : 2305 + 0x13]
rip = 0x0000000141dc7e6f rsp = 0x00000000001bc250
rbp = 0x000007fee9fa2390
Found by: stack scanning
25 <binary_name_replaced>.exe!blink::ScriptController::updateDocument() [scriptcontroller.cpp : 266 + 0x4]
rip = 0x0000000141e62e88 rsp = 0x00000000001bc260
rbp = 0x000007fee9fa2390
Found by: stack scanning
26 <binary_name_replaced>.exe!blink::LocalDOMWindow::installNewDocument(WTF::String const &,blink::DocumentInit const &,bool) [localdomwindow.cpp : 339 + 0xb]
rip = 0x0000000141e5a462 rsp = 0x00000000001bc290
rbp = 0x000007fee9fa2390
Found by: stack scanning
27 <binary_name_replaced>.exe!blink::DocumentLoader::createWriterFor(blink::DocumentInit const &,WTF::AtomicString const &,WTF::AtomicString const &,bool,blink::ParserSynchronizationPolicy,blink::KURL const &) [documentloader.cpp : 760 + 0x14]
rip = 0x0000000141ece76e rsp = 0x00000000001bc2c0
rbp = 0x000007fee9fa2390
Found by: stack scanning
28 <binary_name_replaced>.exe!blink::DocumentLoader::ensureWriter(WTF::AtomicString const &,blink::KURL const &) [documentloader.cpp : 536 + 0x20]
rip = 0x0000000141ecec48 rsp = 0x00000000001bc300
rbp = 0x000007fee9fa2390
Found by: stack scanning
29 <binary_name_replaced>.exe!blink::KURL::KURL() + 0x15
rip = 0x0000000141df1d26 rsp = 0x00000000001bc3d0
rbp = 0x000007fee9fa2390
Found by: stack scanning
30 <binary_name_replaced>.exe!blink::DocumentLoader::commitData(char const *,unsigned __int64) [documentloader.cpp : 546 + 0x28]
rip = 0x0000000141ece66e rsp = 0x00000000001bc400
rbp = 0x000007fee9fa2390
Found by: stack scanning
31 <binary_name_replaced>.exe!blink::DocumentLoader::processData(char const *,unsigned __int64) [documentloader.cpp : 604 + 0xd]
rip = 0x0000000141ecfb9c rsp = 0x00000000001bc490
rbp = 0x000007fee9fa2390
Found by: stack scanning
32 <binary_name_replaced>.exe!blink::DocumentLoader::dataReceived(blink::Resource *,char const *,unsigned __int64) [documentloader.cpp : 580 + 0x4]
rip = 0x0000000141ece85b rsp = 0x00000000001bc4c0
rbp = 0x000007fee9fa2390
Found by: stack scanning
33 <binary_name_replaced>.exe!blink::RawResource::appendData(char const *,unsigned __int64) + 0x5d
rip = 0x00000001422f72ee rsp = 0x00000000001bc4f0
rbp = 0x000007fee9fa2390
Found by: stack scanning
34 <binary_name_replaced>.exe!content::WebURLLoaderImpl::Context::OnReceivedData(std::unique_ptr<content::RequestPeer::ReceivedData,std::default_delete<content::RequestPeer::ReceivedData> >) [web_url_loader_impl.cc : 818 + 0x29]
rip = 0x00000001405870f6 rsp = 0x00000000001bc540
rbp = 0x000007fee9fa2390
Found by: stack scanning
35 <binary_name_replaced>.exe!content::ResourceDispatcher::OnSetDataBuffer(int,base::SharedMemoryHandle,int,unsigned long) [resource_dispatcher.cc : 287 + 0xc]
rip = 0x00000001408a5991 rsp = 0x00000000001bc580
rbp = 0x000007fee9fa2390
Found by: stack scanning
36 <binary_name_replaced>.exe!content::SharedMemoryReceivedDataFactory::Create(int,int,int,int) [shared_memory_received_data_factory.cc : 78 + 0x49]
rip = 0x0000000140be068f rsp = 0x00000000001bc590
rbp = 0x000007fee9fa2390
Found by: stack scanning
37 <binary_name_replaced>.exe!content::WebURLLoaderImpl::RequestPeerImpl::OnReceivedData(std::unique_ptr<content::RequestPeer::ReceivedData,std::default_delete<content::RequestPeer::ReceivedData> >) [web_url_loader_impl.cc : 995 + 0x19]
rip = 0x000000014058719c rsp = 0x00000000001bc5d0
rbp = 0x000007fee9fa2390
Found by: stack scanning
38 <binary_name_replaced>.exe!content::ResourceDispatcher::OnReceivedData(int,int,int,int,int) [resource_dispatcher.cc : 367 + 0x1d]
rip = 0x00000001408a4f3d rsp = 0x00000000001bc600
rbp = 0x000007fee9fa2390
Found by: stack scanning
39 <binary_name_replaced>.exe + 0xc3538b
rip = 0x00000001408a538c rsp = 0x00000000001bc698
rbp = 0x000007fee9fa2390
Found by: stack scanning
40 <binary_name_replaced>.exe + 0xc3538b
rip = 0x00000001408a538c rsp = 0x00000000001bc6c8
rbp = 0x000007fee9fa2390
Found by: stack scanning
41 kernel32.dll + 0x21a09
rip = 0x0000000076f41a0a rsp = 0x00000000001bc6e0
rbp = 0x000007fee9fa2390
Found by: stack scanning
42 <binary_name_replaced>.exe!base::allocator::WinHeapFree(void *) [winheap_stubs_win.cc : 42 + 0x12]
rip = 0x00000001400869dc rsp = 0x00000000001bc710
rbp = 0x000007fee9fa2390
Found by: stack scanning
43 <binary_name_replaced>.exe!scoped_refptr<net::HttpResponseHeaders>::Release(net::HttpResponseHeaders *) [ref_counted.h : 406 + 0x22]
rip = 0x000000013fe3d198 rsp = 0x00000000001bc740
rbp = 0x000007fee9fa2390
Found by: stack scanning
44 <binary_name_replaced>.exe!content::ResourceResponseInfo::~ResourceResponseInfo() + 0x194
rip = 0x00000001402e6301 rsp = 0x00000000001bc770
rbp = 0x000007fee9fa2390
Found by: stack scanning
45 <binary_name_replaced>.exe + 0xc3538b
rip = 0x00000001408a538c rsp = 0x00000000001bc780
rbp = 0x000007fee9fa2390
Found by: stack scanning
46 <binary_name_replaced>.exe + 0xc3538b
rip = 0x00000001408a538c rsp = 0x00000000001bc790
rbp = 0x000007fee9fa2390
Found by: stack scanning
47 <binary_name_replaced>.exe!base::trace_event::TraceLog::AddTraceEventWithThreadIdAndTimestamp(char,unsigned char const *,char const *,char const *,unsigned __int64,unsigned __int64,int,base::TimeTicks const &,int,char const * *,unsigned char const *,unsigned __int64 const *,std::unique_ptr<base::trace_event::ConvertableToTraceFormat,std::default_delete<base::trace_event::ConvertableToTraceFormat> > *,unsigned int) + 0x8d4
rip = 0x000000014004bdb5 rsp = 0x00000000001bc7a0
rbp = 0x000007fee9fa2390
Found by: stack scanning
48 <binary_name_replaced>.exe!base::trace_event::TraceLog::AddTraceEventWithThreadIdAndTimestamp(char,unsigned char const *,char const *,char const *,unsigned __int64,unsigned __int64,int,base::TimeTicks const &,int,char const * *,unsigned char const *,unsigned __int64 const *,std::unique_ptr<base::trace_event::ConvertableToTraceFormat,std::default_delete<base::trace_event::ConvertableToTraceFormat> > *,unsigned int) + 0x8d4
rip = 0x000000014004bdb5 rsp = 0x00000000001bc7b0
rbp = 0x000007fee9fa2390
Found by: stack scanning
49 <binary_name_replaced>.exe!operator new(unsigned __int64) [new_scalar.cpp : 19 + 0x7]
rip = 0x000000014303309d rsp = 0x00000000001bc7d0
rbp = 0x000007fee9fa2390
Found by: stack scanning
50 <binary_name_replaced>.exe!std::_Allocate(unsigned __int64,unsigned __int64,bool) [xmemory0 : 83 + 0x4]
rip = 0x000000013fd87ed3 rsp = 0x00000000001bc800
rbp = 0x000007fee9fa2390
Found by: stack scanning
Thread 1
0 ntdll.dll + 0x4bdca
rbx = 0x0000000003b1f638 r12 = 0x000000000000019c
r13 = 0x0000000000405c50 r14 = 0x0000000000000000
r15 = 0x0000000000000000 rip = 0x000000007708bdca
rsp = 0x0000000003b1f558 rbp = 0x0000000003b1f700
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x16ac
rip = 0x000007fefcea16ad rsp = 0x0000000003b1f560
rbp = 0x0000000003b1f700
Found by: stack scanning
2 <binary_name_replaced>.exe!base::ThreadIdNameManager::SetName(unsigned long,std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0xfa
rip = 0x000000014009cf6b rsp = 0x0000000003b1f590
rbp = 0x0000000003b1f700
Found by: stack scanning
3 kernel32.dll + 0x9990
rip = 0x0000000076f29991 rsp = 0x0000000003b1f5c0
rbp = 0x0000000003b1f700
Found by: stack scanning
4 KERNELBASE.dll + 0x18d9
rip = 0x000007fefcea18da rsp = 0x0000000003b1f5d0
rbp = 0x0000000003b1f700
Found by: stack scanning
5 <binary_name_replaced>.exe!sandbox::BrokerServicesBase::TargetEventsThread(void *) [broker_services.cc : 172 + 0x2c]
rip = 0x0000000140714a28 rsp = 0x0000000003b1f600
rbp = 0x0000000003b1f700
Found by: stack scanning
Thread 2
0 ntdll.dll + 0x4bdca
rbx = 0x00000000039cf6c0 r12 = 0x00000000ffffffff
r13 = 0x0000000000000000 r14 = 0x0000000000000000
r15 = 0x0000000000000000 rip = 0x000000007708bdca
rsp = 0x00000000039cf5b8 rbp = 0x00000000039cf7c0
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x16ac
rip = 0x000007fefcea16ad rsp = 0x00000000039cf5c0
rbp = 0x00000000039cf7c0
Found by: stack scanning
2 kernel32.dll + 0x9990
rip = 0x0000000076f29991 rsp = 0x00000000039cf620
rbp = 0x00000000039cf7c0
Found by: stack scanning
3 ntdll.dll + 0x4e049
rip = 0x000000007708e04a rsp = 0x00000000039cf640
rbp = 0x00000000039cf7c0
Found by: stack scanning
4 <binary_name_replaced>.exe!base::MessagePumpForIO::WaitForIOCompletion(unsigned long,base::MessagePumpForIO::IOHandler *) + 0x82
rip = 0x00000001400b6fa3 rsp = 0x00000000039cf660
rbp = 0x00000000039cf7c0
Found by: stack scanning
5 kernel32.dll + 0x9990
rip = 0x0000000076f29991 rsp = 0x00000000039cf680
rbp = 0x00000000039cf7c0
Found by: stack scanning
6 <binary_name_replaced>.exe!base::MessageLoop::DoIdleWork() + 0xd
rip = 0x000000014005bb2e rsp = 0x00000000039cf690
rbp = 0x00000000039cf7c0
Found by: stack scanning
7 <binary_name_replaced>.exe!base::MessagePumpForIO::DoRunLoop() + 0x139
rip = 0x00000001400b637a rsp = 0x00000000039cf6c0
rbp = 0x00000000039cf7c0
Found by: stack scanning
8 ntdll.dll + 0x4dd47
rip = 0x000000007708dd48 rsp = 0x00000000039cf730
rbp = 0x00000000039cf7c0
Found by: stack scanning
9 ntdll.dll + 0x1103c7
rip = 0x00000000771503c8 rsp = 0x00000000039cf7d8
Found by: stack scanning
10 ntdll.dll + 0x4dd47
rip = 0x000000007708dd48 rsp = 0x00000000039cf810
Found by: stack scanning
11 <binary_name_replaced>.exe!ShimMalloc [allocator_shim.cc : 177 + 0x7]
rip = 0x0000000140013535 rsp = 0x00000000039cf840
Found by: stack scanning
12 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x00000000039cf870
Found by: stack scanning
13 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x00000000039cf8a0
Found by: stack scanning
14 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x00000000039cf8b0
Found by: stack scanning
15 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x00000000039cf8e0
Found by: stack scanning
16 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x00000001400a1342 rsp = 0x00000000039cf900
Found by: stack scanning
17 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x0000000140057ea4 rsp = 0x00000000039cf910
Found by: stack scanning
18 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000014005831b rsp = 0x00000000039cf920
Found by: stack scanning
19 <binary_name_replaced>.exe!base::MessagePumpWin::Run(base::MessagePump::Delegate *) + 0x53
rip = 0x00000001400b6d54 rsp = 0x00000000039cf950
Found by: stack scanning
20 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000014005879e rsp = 0x00000000039cf9a0
Found by: stack scanning
21 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x00000001400583f8 rsp = 0x00000000039cf9c0
Found by: stack scanning
22 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000014003cec2 rsp = 0x00000000039cf9f0
Found by: stack scanning
23 <binary_name_replaced>.exe!base::win::VerifierTraits::StartTracking(void *,void const *,void const *,void const *) + 0x0
rip = 0x0000000140016201 rsp = 0x00000000039cfa50
Found by: stack scanning
24 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000014003e8aa rsp = 0x00000000039cfa90
Found by: stack scanning
25 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x00000000039cfb00
Found by: stack scanning
26 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x00000000039cfb30
Found by: stack scanning
Thread 3
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000003dcf818
r13 = 0x0000000000000000 r14 = 0x000000000048b830
r15 = 0x00000000000003e8 rip = 0x000000007708bd7a
rsp = 0x0000000003dcf7e8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x0000000003dcf7f0
Found by: stack scanning
2 <binary_name_replaced>.exe!base::MessageLoop::DoDelayedWork(base::TimeTicks *) + 0x4a
rip = 0x000000014005ba1b rsp = 0x0000000003dcf810
Found by: stack scanning
3 <binary_name_replaced>.exe!base::WaitableEvent::TimedWait(base::TimeDelta const &) + 0x78
rip = 0x000000014009a3c9 rsp = 0x0000000003dcf890
Found by: stack scanning
4 <binary_name_replaced>.exe!base::MessagePumpDefault::Run(base::MessagePump::Delegate *) + 0x10e
rip = 0x00000001400b74cf rsp = 0x0000000003dcf8e0
Found by: stack scanning
5 <binary_name_replaced>.exe!operator new(unsigned __int64) [new_scalar.cpp : 19 + 0x7]
rip = 0x000000014303309d rsp = 0x0000000003dcf900
Found by: stack scanning
6 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000003dcf920
Found by: stack scanning
7 <binary_name_replaced>.exe!std::allocator<std::_List_unchecked_iterator<std::_List_val<std::_List_simple_types<std::pair<tracked_objects::Location const ,tracked_objects::Births *> > > > >::allocate(unsigned __int64) + 0x5e
rip = 0x00000001400a3a5f rsp = 0x0000000003dcf930
Found by: stack scanning
8 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x0000000003dcf950
Found by: stack scanning
9 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000003dcf960
Found by: stack scanning
10 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x0000000003dcf990
Found by: stack scanning
11 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x00000001400a1342 rsp = 0x0000000003dcf9b0
Found by: stack scanning
12 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x0000000140057ea4 rsp = 0x0000000003dcf9c0
Found by: stack scanning
13 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000014005831b rsp = 0x0000000003dcf9d0
Found by: stack scanning
14 <binary_name_replaced>.exe!tracked_objects::ThreadData::Get() + 0x20
rip = 0x00000001400a1031 rsp = 0x0000000003dcf9f0
Found by: stack scanning
15 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Get() + 0x13
rip = 0x0000000140057e54 rsp = 0x0000000003dcfa10
Found by: stack scanning
16 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000014005879e rsp = 0x0000000003dcfa50
Found by: stack scanning
17 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x00000001400583f8 rsp = 0x0000000003dcfa70
Found by: stack scanning
18 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000014003cec2 rsp = 0x0000000003dcfaa0
Found by: stack scanning
19 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000014003e8aa rsp = 0x0000000003dcfb40
Found by: stack scanning
20 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000003dcfbb0
Found by: stack scanning
21 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000003dcfbe0
Found by: stack scanning
Thread 4
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x00000000004a0720
r15 = 0x00000000000003e8 rip = 0x000000007708bd7a
rsp = 0x0000000003f6f8d8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x0000000003f6f8e0
Found by: stack scanning
2 <binary_name_replaced>.exe!base::WaitableEvent::Wait() + 0x29
rip = 0x000000014009a41a rsp = 0x0000000003f6f980
Found by: stack scanning
3 <binary_name_replaced>.exe!base::MessagePumpDefault::Run(base::MessagePump::Delegate *) + 0x9d
rip = 0x00000001400b745e rsp = 0x0000000003f6f9d0
Found by: stack scanning
4 <binary_name_replaced>.exe!operator new(unsigned __int64) [new_scalar.cpp : 19 + 0x7]
rip = 0x000000014303309d rsp = 0x0000000003f6f9f0
Found by: stack scanning
5 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000003f6fa10
Found by: stack scanning
6 <binary_name_replaced>.exe!std::allocator<std::_List_unchecked_iterator<std::_List_val<std::_List_simple_types<std::pair<tracked_objects::Location const ,tracked_objects::Births *> > > > >::allocate(unsigned __int64) + 0x5e
rip = 0x00000001400a3a5f rsp = 0x0000000003f6fa20
Found by: stack scanning
7 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x0000000003f6fa40
Found by: stack scanning
8 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x0000000003f6fa50
Found by: stack scanning
9 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x0000000003f6fa80
Found by: stack scanning
10 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x00000001400a1342 rsp = 0x0000000003f6faa0
Found by: stack scanning
11 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x0000000140057ea4 rsp = 0x0000000003f6fab0
Found by: stack scanning
12 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000014005831b rsp = 0x0000000003f6fac0
Found by: stack scanning
13 <binary_name_replaced>.exe!tracked_objects::ThreadData::Get() + 0x20
rip = 0x00000001400a1031 rsp = 0x0000000003f6fae0
Found by: stack scanning
14 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Get() + 0x13
rip = 0x0000000140057e54 rsp = 0x0000000003f6fb00
Found by: stack scanning
15 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000014005879e rsp = 0x0000000003f6fb40
Found by: stack scanning
16 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x00000001400583f8 rsp = 0x0000000003f6fb60
Found by: stack scanning
17 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000014003cec2 rsp = 0x0000000003f6fb90
Found by: stack scanning
18 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000014003e8aa rsp = 0x0000000003f6fc30
Found by: stack scanning
19 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000003f6fca0
Found by: stack scanning
20 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000003f6fcd0
Found by: stack scanning
Thread 5
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000435770
r13 = 0x0000000000000000 r14 = 0x00000000004a0bc0
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x000000000412fa08 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc105c
rip = 0x000000007710105d rsp = 0x000000000412fa10
Found by: stack scanning
2 kernel32.dll + 0x21a35
rip = 0x0000000076f41a36 rsp = 0x000000000412fa50
Found by: stack scanning
3 kernel32.dll + 0x4b6a7
rip = 0x0000000076f6b6a8 rsp = 0x000000000412fa80
Found by: stack scanning
4 <binary_name_replaced>.exe!base::internal::LockImpl::Lock() + 0x30
rip = 0x0000000140032121 rsp = 0x000000000412faa0
Found by: stack scanning
5 <binary_name_replaced>.exe!base::ConditionVariable::Wait() + 0x3c
rip = 0x00000001400b78fd rsp = 0x000000000412fac0
Found by: stack scanning
6 <binary_name_replaced>.exe!content::CategorizedWorkerPool::Run(std::vector<cc::TaskCategory,std::allocator<cc::TaskCategory> > const &,base::ConditionVariable *) [categorized_worker_pool.cc : 240 + 0x7]
rip = 0x00000001408be00a rsp = 0x000000000412faf0
Found by: stack scanning
7 <binary_name_replaced>.exe!base::SimpleThread::ThreadMain() + 0xa9
rip = 0x00000001400b8bca rsp = 0x000000000412fb20
Found by: stack scanning
8 <binary_name_replaced>.exe!base::allocator::WinHeapFree(void *) [winheap_stubs_win.cc : 42 + 0x12]
rip = 0x00000001400869dc rsp = 0x000000000412fb50
Found by: stack scanning
9 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000014003e8aa rsp = 0x000000000412fb80
Found by: stack scanning
10 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x000000000412fbf0
Found by: stack scanning
11 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x000000000412fc20
Found by: stack scanning
Thread 6
0 ntdll.dll + 0x4c2ea
rbx = 0x0000000000000000 r12 = 0x000000007713f500
r13 = 0x0000000000000000 r14 = 0x000000007713f4e0
r15 = 0x000000007713f578 rip = 0x000000007708c2ea
rsp = 0x000000000428f698 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1a3c6
rip = 0x000000007705a3c7 rsp = 0x000000000428f6a0
Found by: stack scanning
2 ntdll.dll + 0xff54f
rip = 0x000000007713f550 rsp = 0x000000000428f6c0
Found by: stack scanning
Thread 7
0 ntdll.dll + 0x4d63a
rbx = 0x00000000003e0560 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x00000000043ff688 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x00000000043ff690
Found by: stack scanning
2 ntdll.dll + 0x12d4af
rip = 0x000000007716d4b0 rsp = 0x00000000043ff720
Found by: stack scanning
Thread 8
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000435780
r13 = 0x0000000000000000 r14 = 0x00000000004a0c60
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x000000000458f928 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc105c
rip = 0x000000007710105d rsp = 0x000000000458f930
Found by: stack scanning
2 <binary_name_replaced>.exe!tracked_objects::TrackedTime::Now() + 0x24
rip = 0x00000001400caa55 rsp = 0x000000000458f950
Found by: stack scanning
3 <binary_name_replaced>.exe!tracked_objects::ThreadData::PushToHeadOfList() + 0x121
rip = 0x00000001400a1732 rsp = 0x000000000458f980
Found by: stack scanning
4 kernel32.dll + 0x4b6a7
rip = 0x0000000076f6b6a8 rsp = 0x000000000458f9a0
Found by: stack scanning
5 <binary_name_replaced>.exe!base::internal::LockImpl::Lock() + 0x30
rip = 0x0000000140032121 rsp = 0x000000000458f9c0
Found by: stack scanning
6 <binary_name_replaced>.exe!base::ConditionVariable::Wait() + 0x3c
rip = 0x00000001400b78fd rsp = 0x000000000458f9e0
Found by: stack scanning
7 <binary_name_replaced>.exe!content::CategorizedWorkerPool::Run(std::vector<cc::TaskCategory,std::allocator<cc::TaskCategory> > const &,base::ConditionVariable *) [categorized_worker_pool.cc : 240 + 0x7]
rip = 0x00000001408be00a rsp = 0x000000000458fa10
Found by: stack scanning
8 <binary_name_replaced>.exe!base::SimpleThread::ThreadMain() + 0xa9
rip = 0x00000001400b8bca rsp = 0x000000000458fa40
Found by: stack scanning
9 <binary_name_replaced>.exe!base::allocator::WinHeapFree(void *) [winheap_stubs_win.cc : 42 + 0x12]
rip = 0x00000001400869dc rsp = 0x000000000458fa70
Found by: stack scanning
10 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000014003e8aa rsp = 0x000000000458faa0
Found by: stack scanning
11 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x000000000458fb10
Found by: stack scanning
12 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x000000000458fb40
Found by: stack scanning
Thread 9
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x0000000000000000
r15 = 0x0000000000000000 rip = 0x000000007708bd7a
rsp = 0x00000000049ef948 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x00000000049ef950
Found by: stack scanning
2 <binary_name_replaced>.exe!base::TaskRunner::PostTask(tracked_objects::Location const &,base::Callback<void ,1,1> const &) + 0x16
rip = 0x000000014002ac47 rsp = 0x00000000049ef970
Found by: stack scanning
3 node.dll!uv_sem_wait [thread.c : 355 + 0xb]
rip = 0x000007fee9fa4eb8 rsp = 0x00000000049ef9f0
Found by: stack scanning
4 <binary_name_replaced>.exe!atom::NodeBindings::EmbedThreadRunner(void *) [node_bindings.cc : 285 + 0x7]
rip = 0x000000013fdf3afd rsp = 0x00000000049efa20
Found by: stack scanning
5 <binary_name_replaced>.exe + 0x183ec7
rip = 0x000000013fdf3ec8 rsp = 0x00000000049efa28
Found by: stack scanning
6 node.dll!_acrt_AppPolicyGetThreadInitializationTypeInternal [winapi_thunks.cpp : 766 + 0x1e]
rip = 0x000007feea045440 rsp = 0x00000000049efa40
Found by: stack scanning
7 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007fee9fa42c1 rsp = 0x00000000049efa50
Found by: stack scanning
8 node.dll!_acrt_get_begin_thread_init_policy [win_policies.cpp : 105 + 0x17]
rip = 0x000007feea047f80 rsp = 0x00000000049efa70
Found by: stack scanning
9 <binary_name_replaced>.exe + 0x183ac7
rip = 0x000000013fdf3ac8 rsp = 0x00000000049efa78
Found by: stack scanning
10 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feea019528 rsp = 0x00000000049efaa0
Found by: stack scanning
11 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x00000000049efad0
Found by: stack scanning
12 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x00000000049efb00
Found by: stack scanning
Thread 10
0 ntdll.dll + 0x4d63a
rbx = 0x00000000003e0fb0 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x000000000488fc98 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x000000000488fca0
Found by: stack scanning
Thread 11
0 ntdll.dll + 0x4d63a
rbx = 0x00000000003e0fb0 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x0000000004fbfc58 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x0000000004fbfc60
Found by: stack scanning
Thread 12
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x000007feea5e76d8
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x0000000004d4fd08 rbp = 0x000007feea5e7680
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc0153
rip = 0x0000000077100154 rsp = 0x0000000004d4fd10
rbp = 0x000007feea5e7680
Found by: stack scanning
2 KERNELBASE.dll + 0x171f
rip = 0x000007fefcea1720 rsp = 0x0000000004d4fd60
rbp = 0x000007feea5e7680
Found by: stack scanning
3 kernel32.dll + 0x4b6f7
rip = 0x0000000076f6b6f8 rsp = 0x0000000004d4fd70
rbp = 0x000007feea5e7680
Found by: stack scanning
4 node.dll!uv_cond_wait [thread.c : 573 + 0x5]
rip = 0x000007fee9fa4938 rsp = 0x0000000004d4fda0
rbp = 0x000007feea5e7680
Found by: stack scanning
5 node.dll!worker [threadpool.c : 75 + 0x18]
rip = 0x000007fee9fb4660 rsp = 0x0000000004d4fdd0
rbp = 0x000007feea5e7680
Found by: stack scanning
6 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007fee9fa42c1 rsp = 0x0000000004d4fe00
rbp = 0x000007feea5e7680
Found by: stack scanning
7 node.dll!_acrt_getptd [per_thread_data.cpp : 283 + 0xa4]
rip = 0x000007feea044527 rsp = 0x0000000004d4fe20
rbp = 0x000007feea5e7680
Found by: stack scanning
8 node.dll + 0xb84603
rip = 0x000007fee9fb4604 rsp = 0x0000000004d4fe28
rbp = 0x000007feea5e7680
Found by: stack scanning
9 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feea019528 rsp = 0x0000000004d4fe50
rbp = 0x000007feea5e7680
Found by: stack scanning
10 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000004d4fe80
rbp = 0x000007feea5e7680
Found by: stack scanning
11 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000004d4feb0
rbp = 0x000007feea5e7680
Found by: stack scanning
Thread 13
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x000007feea5e76d8
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x0000000005d4fcf8 rbp = 0x000007feea5e7680
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc0153
rip = 0x0000000077100154 rsp = 0x0000000005d4fd00
rbp = 0x000007feea5e7680
Found by: stack scanning
2 KERNELBASE.dll + 0x171f
rip = 0x000007fefcea1720 rsp = 0x0000000005d4fd50
rbp = 0x000007feea5e7680
Found by: stack scanning
3 kernel32.dll + 0x4b6f7
rip = 0x0000000076f6b6f8 rsp = 0x0000000005d4fd60
rbp = 0x000007feea5e7680
Found by: stack scanning
4 node.dll!uv_cond_wait [thread.c : 573 + 0x5]
rip = 0x000007fee9fa4938 rsp = 0x0000000005d4fd90
rbp = 0x000007feea5e7680
Found by: stack scanning
5 node.dll!worker [threadpool.c : 75 + 0x18]
rip = 0x000007fee9fb4660 rsp = 0x0000000005d4fdc0
rbp = 0x000007feea5e7680
Found by: stack scanning
6 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007fee9fa42c1 rsp = 0x0000000005d4fdf0
rbp = 0x000007feea5e7680
Found by: stack scanning
7 node.dll!_acrt_getptd [per_thread_data.cpp : 283 + 0xa4]
rip = 0x000007feea044527 rsp = 0x0000000005d4fe10
rbp = 0x000007feea5e7680
Found by: stack scanning
8 node.dll + 0xb84603
rip = 0x000007fee9fb4604 rsp = 0x0000000005d4fe18
rbp = 0x000007feea5e7680
Found by: stack scanning
9 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feea019528 rsp = 0x0000000005d4fe40
rbp = 0x000007feea5e7680
Found by: stack scanning
10 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x0000000005d4fe70
rbp = 0x000007feea5e7680
Found by: stack scanning
11 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x0000000005d4fea0
rbp = 0x000007feea5e7680
Found by: stack scanning
Thread 14
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x000007feea5e76d8
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x000000000600f948 rbp = 0x000007feea5e7680
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc0153
rip = 0x0000000077100154 rsp = 0x000000000600f950
rbp = 0x000007feea5e7680
Found by: stack scanning
2 kernel32.dll + 0x4b6f7
rip = 0x0000000076f6b6f8 rsp = 0x000000000600f9b0
rbp = 0x000007feea5e7680
Found by: stack scanning
3 node.dll!uv_cond_wait [thread.c : 573 + 0x5]
rip = 0x000007fee9fa4938 rsp = 0x000000000600f9e0
rbp = 0x000007feea5e7680
Found by: stack scanning
4 node.dll!worker [threadpool.c : 75 + 0x18]
rip = 0x000007fee9fb4660 rsp = 0x000000000600fa10
rbp = 0x000007feea5e7680
Found by: stack scanning
5 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007fee9fa42c1 rsp = 0x000000000600fa40
rbp = 0x000007feea5e7680
Found by: stack scanning
6 node.dll!_acrt_getptd [per_thread_data.cpp : 283 + 0xa4]
rip = 0x000007feea044527 rsp = 0x000000000600fa60
rbp = 0x000007feea5e7680
Found by: stack scanning
7 node.dll + 0xb84603
rip = 0x000007fee9fb4604 rsp = 0x000000000600fa68
rbp = 0x000007feea5e7680
Found by: stack scanning
8 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feea019528 rsp = 0x000000000600fa90
rbp = 0x000007feea5e7680
Found by: stack scanning
9 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x000000000600fac0
rbp = 0x000007feea5e7680
Found by: stack scanning
10 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x000000000600faf0
rbp = 0x000007feea5e7680
Found by: stack scanning
Thread 15
0 ntdll.dll + 0x4d62a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x000007feea5e76d8
r15 = 0x0000000000000000 rip = 0x000000007708d62a
rsp = 0x00000000061efcf8 rbp = 0x000007feea5e7680
Found by: given as instruction pointer in context
1 ntdll.dll + 0xc0153
rip = 0x0000000077100154 rsp = 0x00000000061efd00
rbp = 0x000007feea5e7680
Found by: stack scanning
2 KERNELBASE.dll + 0x171f
rip = 0x000007fefcea1720 rsp = 0x00000000061efd50
rbp = 0x000007feea5e7680
Found by: stack scanning
3 kernel32.dll + 0x4b6f7
rip = 0x0000000076f6b6f8 rsp = 0x00000000061efd60
rbp = 0x000007feea5e7680
Found by: stack scanning
4 node.dll!uv_cond_wait [thread.c : 573 + 0x5]
rip = 0x000007fee9fa4938 rsp = 0x00000000061efd90
rbp = 0x000007feea5e7680
Found by: stack scanning
5 node.dll!worker [threadpool.c : 75 + 0x18]
rip = 0x000007fee9fb4660 rsp = 0x00000000061efdc0
rbp = 0x000007feea5e7680
Found by: stack scanning
6 node.dll!uv__thread_start [thread.c : 122 + 0x8]
rip = 0x000007fee9fa42c1 rsp = 0x00000000061efdf0
rbp = 0x000007feea5e7680
Found by: stack scanning
7 node.dll!_acrt_getptd [per_thread_data.cpp : 283 + 0xa4]
rip = 0x000007feea044527 rsp = 0x00000000061efe10
rbp = 0x000007feea5e7680
Found by: stack scanning
8 node.dll + 0xb84603
rip = 0x000007fee9fb4604 rsp = 0x00000000061efe18
rbp = 0x000007feea5e7680
Found by: stack scanning
9 node.dll!thread_start<unsigned int (__cdecl*)(void * __ptr64)> [thread.cpp : 115 + 0xc]
rip = 0x000007feea019528 rsp = 0x00000000061efe40
rbp = 0x000007feea5e7680
Found by: stack scanning
10 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x00000000061efe70
rbp = 0x000007feea5e7680
Found by: stack scanning
11 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x00000000061efea0
rbp = 0x000007feea5e7680
Found by: stack scanning
Thread 16
0 ntdll.dll + 0x4d63a
rbx = 0x00000000003e0fb0 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x000000000630f9e8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x000000000630f9f0
Found by: stack scanning
Thread 17
0 ntdll.dll + 0x4d63a
rbx = 0x00000000003e0fb0 r12 = 0x0000000000000000
r13 = 0x000000007713f600 r14 = 0x000000007713f5d8
r15 = 0x0000000000000000 rip = 0x000000007708d63a
rsp = 0x00000000064ef968 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 ntdll.dll + 0x1ed14
rip = 0x000000007705ed15 rsp = 0x00000000064ef970
Found by: stack scanning
2 ntdll.dll + 0x12d4af
rip = 0x000000007716d4b0 rsp = 0x00000000064ef9f8
Found by: stack scanning
Thread 18
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x0000000004a126e0
r15 = 0x00000000000003e8 rip = 0x000000007708bd7a
rsp = 0x00000000065efa68 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x00000000065efa70
Found by: stack scanning
2 <binary_name_replaced>.exe!base::WaitableEvent::Wait() + 0x29
rip = 0x000000014009a41a rsp = 0x00000000065efb10
Found by: stack scanning
3 <binary_name_replaced>.exe!base::MessagePumpDefault::Run(base::MessagePump::Delegate *) + 0x9d
rip = 0x00000001400b745e rsp = 0x00000000065efb60
Found by: stack scanning
4 <binary_name_replaced>.exe!ShimMalloc [allocator_shim.cc : 177 + 0x7]
rip = 0x0000000140013535 rsp = 0x00000000065efb70
Found by: stack scanning
5 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x00000000065efba0
Found by: stack scanning
6 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x00000000065efbd0
Found by: stack scanning
7 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x00000000065efbe0
Found by: stack scanning
8 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x00000000065efc10
Found by: stack scanning
9 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x00000001400a1342 rsp = 0x00000000065efc30
Found by: stack scanning
10 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x0000000140057ea4 rsp = 0x00000000065efc40
Found by: stack scanning
11 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000014005831b rsp = 0x00000000065efc50
Found by: stack scanning
12 <binary_name_replaced>.exe!tracked_objects::ThreadData::Get() + 0x20
rip = 0x00000001400a1031 rsp = 0x00000000065efc70
Found by: stack scanning
13 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Get() + 0x13
rip = 0x0000000140057e54 rsp = 0x00000000065efc90
Found by: stack scanning
14 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000014005879e rsp = 0x00000000065efcd0
Found by: stack scanning
15 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x00000001400583f8 rsp = 0x00000000065efcf0
Found by: stack scanning
16 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000014003cec2 rsp = 0x00000000065efd20
Found by: stack scanning
17 <binary_name_replaced>.exe!base::win::VerifierTraits::StartTracking(void *,void const *,void const *,void const *) + 0x0
rip = 0x0000000140016201 rsp = 0x00000000065efd80
Found by: stack scanning
18 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000014003e8aa rsp = 0x00000000065efdc0
Found by: stack scanning
19 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x00000000065efe30
Found by: stack scanning
20 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x00000000065efe60
Found by: stack scanning
Thread 19
0 ntdll.dll + 0x4bd7a
rbx = 0x0000000000000000 r12 = 0x0000000000000000
r13 = 0x0000000000000000 r14 = 0x0000000004a131e0
r15 = 0x00000000000003e8 rip = 0x000000007708bd7a
rsp = 0x000000000c69f5e8 rbp = 0x0000000000000000
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x10ab
rip = 0x000007fefcea10ac rsp = 0x000000000c69f5f0
Found by: stack scanning
2 <binary_name_replaced>.exe!base::WaitableEvent::Wait() + 0x29
rip = 0x000000014009a41a rsp = 0x000000000c69f690
Found by: stack scanning
3 <binary_name_replaced>.exe!base::MessagePumpDefault::Run(base::MessagePump::Delegate *) + 0x9d
rip = 0x00000001400b745e rsp = 0x000000000c69f6e0
Found by: stack scanning
4 <binary_name_replaced>.exe!ShimMalloc [allocator_shim.cc : 177 + 0x7]
rip = 0x0000000140013535 rsp = 0x000000000c69f6f0
Found by: stack scanning
5 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x000000000c69f720
Found by: stack scanning
6 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x000000000c69f750
Found by: stack scanning
7 ntdll.dll + 0x8df69
rip = 0x00000000770cdf6a rsp = 0x000000000c69f760
Found by: stack scanning
8 <binary_name_replaced>.exe!base::LazyInstance<base::Lock,base::internal::LeakyLazyInstanceTraits<base::Lock> >::OnExit(void *) + 0x2a
rip = 0x0000000140039b5b rsp = 0x000000000c69f790
Found by: stack scanning
9 <binary_name_replaced>.exe!tracked_objects::ThreadData::InitializeThreadContext(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &) + 0x1d1
rip = 0x00000001400a1342 rsp = 0x000000000c69f7b0
Found by: stack scanning
10 <binary_name_replaced>.exe!base::ThreadLocalStorage::StaticSlot::Get() + 0x13
rip = 0x0000000140057ea4 rsp = 0x000000000c69f7c0
Found by: stack scanning
11 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Set(void *) + 0x1a
rip = 0x000000014005831b rsp = 0x000000000c69f7d0
Found by: stack scanning
12 <binary_name_replaced>.exe!tracked_objects::ThreadData::Get() + 0x20
rip = 0x00000001400a1031 rsp = 0x000000000c69f7f0
Found by: stack scanning
13 <binary_name_replaced>.exe!base::ThreadLocalStorage::Slot::Get() + 0x13
rip = 0x0000000140057e54 rsp = 0x000000000c69f810
Found by: stack scanning
14 <binary_name_replaced>.exe!base::RunLoop::Run() + 0x2d
rip = 0x000000014005879e rsp = 0x000000000c69f850
Found by: stack scanning
15 <binary_name_replaced>.exe!base::RunLoop::RunLoop() + 0x27
rip = 0x00000001400583f8 rsp = 0x000000000c69f870
Found by: stack scanning
16 <binary_name_replaced>.exe!base::Thread::ThreadMain() + 0x1a1
rip = 0x000000014003cec2 rsp = 0x000000000c69f8a0
Found by: stack scanning
17 <binary_name_replaced>.exe!base::win::VerifierTraits::StartTracking(void *,void const *,void const *,void const *) + 0x0
rip = 0x0000000140016201 rsp = 0x000000000c69f900
Found by: stack scanning
18 <binary_name_replaced>.exe!base::PlatformThread::Sleep(base::TimeDelta) + 0x1d9
rip = 0x000000014003e8aa rsp = 0x000000000c69f940
Found by: stack scanning
19 kernel32.dll + 0x159cc
rip = 0x0000000076f359cd rsp = 0x000000000c69f9b0
Found by: stack scanning
20 ntdll.dll + 0x2a560
rip = 0x000000007706a561 rsp = 0x000000000c69f9e0
Found by: stack scanning
Loaded modules:
0x76e20000 - 0x76f19fff user32.dll 6.1.7601.23594
0x76f20000 - 0x7703efff kernel32.dll 6.1.7601.23796
0x77040000 - 0x771e9fff ntdll.dll 6.1.7601.23796
0x77200000 - 0x77202fff normaliz.dll 6.1.7600.16385
0x77210000 - 0x77216fff psapi.dll 6.1.7600.16385
0x13fc70000 - 0x144ac5fff <binary_name_replaced>.exe 1.6.8.0 (main)
0x7fee9430000 - 0x7feea6d0fff node.dll 7.4.0.0
0x7fef41a0000 - 0x7fef456bfff ffmpeg.dll ???
0x7fef4910000 - 0x7fef4aa6fff DWrite.dll 6.2.9200.22082
0x7fef5ea0000 - 0x7fef5efcfff dxgi.dll 6.2.9200.16492
0x7fef6280000 - 0x7fef628ffff wshbth.dll 6.1.7601.17514
0x7fef6290000 - 0x7fef629afff winrnr.dll 6.1.7600.16385
0x7fef62a0000 - 0x7fef62b8fff pnrpnsp.dll 6.1.7600.16385
0x7fef62c0000 - 0x7fef62d4fff NapiNSP.dll 6.1.7600.16385
0x7fef6bf0000 - 0x7fef6c2afff winmm.dll 6.1.7600.16385
0x7fef7ab0000 - 0x7fef7ab2fff api-ms-win-core-synch-l1-2-0.DLL 10.0.10586.788
0x7fef7ac0000 - 0x7fef7ac6fff msimg32.dll 6.1.7600.16385
0x7fef8fe0000 - 0x7fef9033fff oleacc.dll 7.0.0.0
0x7fef9040000 - 0x7fef90f9fff UIAutomationCore.DLL 7.0.0.0
0x7fef9100000 - 0x7fef911bfff fontsub.dll 6.1.7601.23717
0x7fef9190000 - 0x7fef9200fff winspool.drv 6.1.7601.17514
0x7fef9410000 - 0x7fef9534fff dbghelp.dll 6.1.7601.17514
0x7fefa0a0000 - 0x7fefa0b7fff dhcpcsvc.dll 6.1.7600.16385
0x7fefa0c0000 - 0x7fefa0d0fff dhcpcsvc6.DLL 6.1.7600.16385
0x7fefa420000 - 0x7fefa42afff winnsi.dll 6.1.7600.16385
0x7fefa430000 - 0x7fefa456fff IPHLPAPI.DLL 6.1.7601.17514
0x7fefa990000 - 0x7fefa9a4fff nlaapi.dll 6.1.7601.17964
0x7fefb050000 - 0x7fefb067fff dwmapi.dll 6.1.7600.16385
0x7fefb0e0000 - 0x7fefb10bfff powrprof.dll 6.1.7600.16385
0x7fefb570000 - 0x7fefb5c5fff uxtheme.dll 6.1.7600.16385
0x7fefb8f0000 - 0x7fefbae3fff comctl32.dll 6.10.7601.18837
0x7fefbe10000 - 0x7fefbe1bfff version.dll 6.1.7600.16385
0x7fefbee0000 - 0x7fefbee6fff WSHTCPIP.DLL 6.1.7600.16385
0x7fefc340000 - 0x7fefc39afff dnsapi.dll 6.1.7601.17570
0x7fefc4b0000 - 0x7fefc4b6fff wship6.dll 6.1.7600.16385
0x7fefc4c0000 - 0x7fefc514fff mswsock.dll 6.1.7601.23451
0x7fefc670000 - 0x7fefc691fff bcrypt.dll 6.1.7601.23796
0x7fefc6a0000 - 0x7fefc6effff ncrypt.dll 6.1.7601.23796
0x7fefcb30000 - 0x7fefcb86fff apphelp.dll 6.1.7601.17514
0x7fefcb90000 - 0x7fefcb9efff cryptbase.dll 6.1.7601.23796
0x7fefcd30000 - 0x7fefcd3efff profapi.dll 6.1.7600.16385
0x7fefcd40000 - 0x7fefcd4efff msasn1.dll 6.1.7601.17514
0x7fefcd50000 - 0x7fefcd69fff devobj.dll 6.1.7600.16385
0x7fefcd70000 - 0x7fefcd72fff api-ms-win-downlevel-normaliz-l1-1-0.dll 6.2.9200.16492
0x7fefcd80000 - 0x7fefcd9dfff userenv.dll 6.1.7601.17514
0x7fefcda0000 - 0x7fefcdd5fff cfgmgr32.dll 6.1.7601.17514
0x7fefcdf0000 - 0x7fefcdf3fff api-ms-win-downlevel-version-l1-1-0.dll 6.2.9200.16492
0x7fefcea0000 - 0x7fefcf09fff KERNELBASE.dll 6.1.7601.23796
0x7fefcf10000 - 0x7fefcf14fff api-ms-win-downlevel-advapi32-l1-1-0.dll 6.2.9200.16492
0x7fefd090000 - 0x7fefd093fff api-ms-win-downlevel-shlwapi-l1-1-0.dll 6.2.9200.16492
0x7fefd0e0000 - 0x7fefd0e3fff api-ms-win-downlevel-user32-l1-1-0.dll 6.2.9200.16492
0x7fefd0f0000 - 0x7fefd160fff shlwapi.dll 6.1.7601.17514
0x7fefd420000 - 0x7fefd43efff sechost.dll 6.1.7600.16385
0x7fefd440000 - 0x7fefd51afff advapi32.dll 6.1.7601.23796
0x7fefd520000 - 0x7fefd54dfff imm32.dll 6.1.7600.16385
0x7fefd5b0000 - 0x7fefd646fff comdlg32.dll 6.1.7601.17514
0x7fefd650000 - 0x7fefd719fff usp10.dll 1.626.7601.23688
0x7fefd720000 - 0x7fefd7befff msvcrt.dll 7.0.7601.17744
0x7fefd7c0000 - 0x7fefd8ecfff rpcrt4.dll 6.1.7601.23796
0x7fefd910000 - 0x7fefdb0bfff ole32.dll 6.1.7601.23775
0x7fefdb10000 - 0x7fefdc18fff msctf.dll 6.1.7601.23572
0x7fefdc20000 - 0x7fefe9a8fff shell32.dll 6.1.7601.18952
0x7fefe9b0000 - 0x7fefea89fff oleaut32.dll 6.1.7601.23775
0x7fefea90000 - 0x7fefea97fff nsi.dll 6.1.7600.16385
0x7fefeaa0000 - 0x7fefec76fff setupapi.dll 6.1.7601.17514
0x7fefec80000 - 0x7fefefa0fff wininet.dll 11.0.9600.18666
0x7fefefb0000 - 0x7fefeffcfff ws2_32.dll 6.1.7601.23451
0x7feff000000 - 0x7feff066fff gdi32.dll 6.1.7601.23764
0x7feff070000 - 0x7feff339fff iertutil.dll 11.0.9600.18666
0x7feff340000 - 0x7feff34dfff lpk.dll 6.1.7601.23717
```
</details>
### How to reproduce
It is very intermittent and not easily reproducible. one way to do is using slack client -
1. open sign in page
2. enter team name, email address correctly
3. when asked to enter password, enter incorrect one
4. proceed again to enter password
5. enter correct password now 👉 intermittently, instead of sign in webview crashes
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/9538
|
https://github.com/electron/electron/pull/10099
|
d38c9a4644215c8095c3a115ebecd5e7649e8d22
|
5b7cf19ced024fc8caf34347b10eead779cb4b69
| 2017-05-20T04:31:13Z |
c++
| 2017-07-31T01:41:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,533 |
["atom/browser/atom_browser_client.cc"]
|
No opener using native window.open from an iframe in non-sandbox mode
|
* Electron version: 1.7.1
* Operating system: MacOS
### Expected behavior
The popup should have `window.opener` set
### Actual behavior
I was using native `window.open` in sandbox mode until this PR was merged : https://github.com/electron/electron/pull/8963
I switched to non-sandbox mode using the version 1.7.1 and what happen is that, if your main app is embedded in an iframe and if it open a new window using `window.open`, the new window won't have `window.opener` set
If I load the same app directly in the main window and not using the iframe, it is working as expected
I am using the code from https://github.com/electron/electron/blob/master/docs/api/window-open.md
### How to reproduce
In the main window load in an iframe your app.
In the app open a popup with `window.open`
The new popup does not have `window.opener` set
|
https://github.com/electron/electron/issues/9533
|
https://github.com/electron/electron/pull/9961
|
7961a97d7ddbed657c6c867cc8426e02c236c077
|
63d7aee1a6e97cf0498d7d1693cbccade901097c
| 2017-05-19T16:39:29Z |
c++
| 2017-08-04T12:18:47Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,495 |
["vendor/libchromiumcontent"]
|
Clicking on 1st subitem in Tray menu does not work on Linux
|
* Electron version: 1.6.8
* Operating system: Ubuntu 16.04
### Expected behavior
Submenu items in Tray menu should properly raise click event when clicked.
### Actual behavior
The 1st submenu item in tray menu cannot be clicked when in the parent menu hierarchy there is a disabled item.
### How to reproduce
```es6
let template = [{
label: "1 item",
enabled: false
}, {
label: "2 item",
submenu: [{
label: "1 subitem",
click: () => console.log("1 subitem click")
}, {
label: "2 subitem",
click: () => console.log("2 subitem click")
}]
}];
tray = new Tray(nativeImage.createFromDataURL("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAB4UlEQVQ4jbXVO2gUURTG8d/MLiERZE0kRGFFIZ2ExCapLExlLI1VbGzFylj4iLVaWCjWFlZaCDYWJiBCsNMqugqB+CBEg0hMFtE83IfFzOpmmOgsxq+753znf+6FyznBj/vDtlAnxnAM/diDDSxgDo9wD8tpxUEKuB3jOI9dW3WNtYLruIHV5kSYMB7Ac1zNABV7ruBZXJsKLuIp+jIAk+qLa4tJcDseNBK5oQn5E4+F/adbgRdjRkcz+CwGG45g3zBBKCweafXmgzFLiC5cbM7WSrfVl2fVXt9pFQwX0JUXfanCJvD8E8HCtHp1Iwp0dAvCXHReLwt2HyTXpr70ispaElzAWB5Hk5n88C129Kh/nlGdHv99Lr8BQaE3Mq59UZ0+p/51PokYCXEo6xuDQq9g534q8Zdt7xIOnEmzDoToyQpW+a46dUrl4aj6t8WoWXfqvXpCrGfl1stvI2B1naVSFMy1pXpDLGa+ca3a1KX2J+enELOZwdk1E2LqP4AnQ9HoK28jtIx7jbF5STTRtkMTuNaYFTfxchugpZj1awitYhQf/wH6Acdj1qZ5PIfDcddWVYpr5xqB5AZ5hyFcFq2dv2kl9g7hfXMibec11ImTGBEt071xfBEvMIm7tlimPwG5j4M02bHWtgAAAABJRU5ErkJggg=="));
tray.setContextMenu(Menu.buildFromTemplate(template));
```
Click on the `"1 subitem"` and see that there is nothing logged.
|
https://github.com/electron/electron/issues/9495
|
https://github.com/electron/electron/pull/9967
|
6341749b82ebf5ba137504116ebcb39945b7f196
|
8ae55dae6cd5f54170c482f12870f500e591aecc
| 2017-05-16T16:09:29Z |
c++
| 2017-07-10T21:31:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,469 |
["docs/api/native-image.md"]
|
[typescript definition] wrong signature for NativeImage.createFromDataURL
|
I am using electron 1.6.9.beta
Within electron.d.ts, the signature for createFromDataURL is:
```typescript
static createFromDataURL(dataURL: string): void;
```
when it should be
```typescript
static createFromDataURL(dataURL: string): NativeImage;
```
|
https://github.com/electron/electron/issues/9469
|
https://github.com/electron/electron/pull/9470
|
a6e11d3b63cb7ca3b3661b6a56a853358b1ab734
|
b09086c1b8a498c8d5184c6cb466dd3b1a668094
| 2017-05-15T15:13:51Z |
c++
| 2017-05-15T15:47:09Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,434 |
["atom/app/node_main.cc", "atom/browser/atom_browser_main_parts.cc", "atom/browser/atom_browser_main_parts.h"]
|
1.7.0 could not start with --debug / -debug argument
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.7.0
* Operating system: macOS
### Expected behavior
Electron works with `--debug` or `-debug` argument
<!-- What do you think should happen? -->
### Actual behavior
Electron won't run with arguments above.
<!-- What actually happens? -->
### How to reproduce
I've tried the standalone .app and the npm modules:
- for standalone .app it shows an error and returns a non-zero
(with "IOVARendererID property not found" the welcome window appears and I've manually close it)

- for npm module it just won't start and no error returns

I can confirm the `--debug` works with previous versions including 1.6.9 beta
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/9434
|
https://github.com/electron/electron/pull/9436
|
b09086c1b8a498c8d5184c6cb466dd3b1a668094
|
e708a45496b9a9621e6c1f16aa039f700a2aba14
| 2017-05-11T14:52:42Z |
c++
| 2017-05-15T15:47:52Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,414 |
["atom/common/api/atom_api_native_image.cc", "atom/common/api/atom_api_native_image.h", "atom/common/api/atom_api_native_image_mac.mm", "docs/api/native-image.md", "spec/api-native-image-spec.js"]
|
Feature request: Add support for "named" NSImage in Touchbar
|
* Electron version: latest
* Operating system: MacOS
The TouchBar API (and MacOS in general) let's you pass an `imageNamed` param to NSImage to get the default OS image. For example: `[NSImage imageNamed:@"NSTouchBarGoUpTemplate"];` creates an NSImage with the default up chevron icon on MacOS.
It would be pretty neat-o to allow TouchBar users to do something like this:
```javascript
new TouchBarButton({
icon: nativeImage.createFromMacOSNamedImage('NSTouchBarGoUpTemplate')
})
```
...and maybe that would just no-op with `nativeImage.createEmpty()` on non-MacOS platforms.
I guess this is really bigger than just TouchBar because this API could benefit `Menu` for example as well, or anywhere else where you use `nativeImage`.
|
https://github.com/electron/electron/issues/9414
|
https://github.com/electron/electron/pull/10727
|
26220f2b31a0f4e8fe6c9137b3cbf7236e3ebe20
|
bdf3552be6ed9d5d44efde673784d6997b3606fb
| 2017-05-09T21:58:09Z |
c++
| 2017-10-11T23:02:07Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,412 |
["atom/browser/atom_resource_dispatcher_host_delegate.cc", "atom/browser/web_contents_preferences.cc", "atom/browser/web_contents_preferences.h", "spec/chromium-spec.js"]
|
PDF plugin ignores webPreferences: { plugins: false }
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.6
* Operating system: macOS 10.12.4
### Expected behavior
When creating a new `BrowserWindow` the [PDF plugin](https://github.com/electron/electron/pull/8435) should respect the BrowserWindow `webPreferences.plugins` option as stated in the [API documentation](https://electron.atom.io/docs/api/browser-window/#new-browserwindowoptions):
> plugins Boolean (optional) - Whether plugins should be enabled. Default is false.
### Actual behavior
The plugin is always enabled. Even if `plugins` is explicitly set to `false` like that:
```
mainWindow = new BrowserWindow({
webPreferences: {
plugins: false // set it explicitly to false even if it should be the default
}
})
```
### How to reproduce
$ git clone https://github.com/rreimann/electron-quick-start.git -b pdf-plugin-always-enabled
$ npm install
$ npm start || electron .
See that "Chromium PDF Viewer" is contained in the listed plugins and the PDF link opens the PDF Viewer instead of downloading the PDF as it would be the case if the plugin was not enabled.
|
https://github.com/electron/electron/issues/9412
|
https://github.com/electron/electron/pull/9507
|
337f61af98b44919c7f3d2f4f09012f7614de955
|
021b5a9ae0f35f48bcf546763d2b58438cb03344
| 2017-05-09T09:12:45Z |
c++
| 2017-05-22T21:34:35Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,387 |
["lib/browser/rpc-server.js", "lib/renderer/api/remote.js", "spec/api-browser-window-spec.js", "spec/fixtures/api/sandbox.html", "spec/fixtures/module/hello-child.js", "spec/fixtures/module/hello.js", "spec/fixtures/module/preload-sandbox.js"]
|
Crash in electron 1.6.8 using remote when sandboxed
|
Crash in electron remote.
* Electron version: 1.6.8
* Operating system: Mac OSX 10.10.5
This is only happening on 1.6.8. Doesn't happen in 1.6.7.
Repo:
1. git clone https://github.com/lneir/electron-remote-issue
2. follow instructions in README
3. crash stack shown below.
This demo repo has sandboxing turned on and is using preload script to access remote class.
crash stack from renderer console:
Uncaught Error: Cannot call constructor on missing remote object 36
Error: Cannot call constructor on missing remote object 36
at throwRPCError (/Users/lneir/IntelliJProjects/tests/electron-remote-issue/node_modules/electron/dist/Electron.app/Contents/Resources/electron.asar/browser/rpc-server.js:143:17)
at EventEmitter.<anonymous> (/Users/lneir/IntelliJProjects/tests/electron-remote-issue/node_modules/electron/dist/Electron.app/Contents/Resources/electron.asar/browser/rpc-server.js:303:7)
at emitThree (events.js:116:13)
at EventEmitter.emit (events.js:194:7)
at WebContents.<anonymous> (/Users/lneir/IntelliJProjects/tests/electron-remote-issue/node_modules/electron/dist/Electron.app/Contents/Resources/electron.asar/browser/api/web-contents.js:256:37)
at emitTwo (events.js:106:13)
at WebContents.emit (events.js:191:7)
at throwRPCError (/Users/lneir/IntelliJProjects/tests/electron-remote-issue/node_modules/electron/dist/Electron.app/Contents/Resources/electron.asar/browser/rpc-server.js:143:17)
at EventEmitter.<anonymous> (/Users/lneir/IntelliJProjects/tests/electron-remote-issue/node_modules/electron/dist/Electron.app/Contents/Resources/electron.asar/browser/rpc-server.js:303:7)
at emitThree (events.js:116:13)
at EventEmitter.emit (events.js:194:7)
at WebContents.<anonymous> (/Users/lneir/IntelliJProjects/tests/electron-remote-issue/node_modules/electron/dist/Electron.app/Contents/Resources/electron.asar/browser/api/web-contents.js:256:37)
at emitTwo (events.js:106:13)
at WebContents.emit (events.js:191:7)
at metaToValue (<anonymous>:552:13)
at new remoteFunction (<anonymous>:565:20)
at HTMLButtonElement.<anonymous> (file:///Users/lneir/IntelliJProjects/tests/electron-remote-issue/index.html:15:17)
|
https://github.com/electron/electron/issues/9387
|
https://github.com/electron/electron/pull/9389
|
d66b32b95933d376e4f08de3718abadf8a2117af
|
6826595e9eac2c340e1099dabcebc24a7d23236a
| 2017-05-05T20:37:54Z |
c++
| 2017-05-17T07:20:26Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,354 |
["atom/browser/net/js_asker.h", "atom/browser/net/url_request_buffer_job.cc", "spec/chromium-spec.js"]
|
Service workers failing to load after interceptBufferProtocol
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
@deepak1556 This is the issue I mentioned on Slack, thanks for your help!
* Electron version: v1.6.6
* Operating system: OSX 10.12.4
### Expected behavior
Service worker scripts should successfully load after defining a custom protocol interception on `file`.
### Actual behavior
After defining an intercept function on `file` protocol by calling `interceptBufferProtocol`, service worker scripts fail to load with the error:
```
error when registering service worker TypeError: Failed to register a ServiceWorker: A bad HTTP response code (-1) was received when fetching the script.
```
This occurs after a call to `interceptBufferProtocol` in the `electron-compile` npm package (in `lib/protocol-hook.js`. If this call is taken out or `protocol.uninterceptProtocol('file');` is called afterward, service worker scripts load correctly.
### How to reproduce
```
git clone https://github.com/concreted/esw -b test_electron_compile
npm install
electron .
```
You should see the `error when registering...` error in the browser window console.
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/9354
|
https://github.com/electron/electron/pull/9360
|
190c9c916e7802a873f6469a74b1963014d1ea83
|
afe58231ba5bde91a0606e3cdeeac8588a806e98
| 2017-05-02T17:21:53Z |
c++
| 2017-05-11T23:01:14Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,351 |
["shell/common/api/electron_api_native_image.cc", "spec/api-native-image-spec.js"]
|
Add image type to nativeImage.createFromBuffer
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.4.16 / 1.6.6
* Operating system: macOS
### Expected behavior
`toBitmap` method returns proper buffer for `nativeImage` created by cropping an existing `nativeImage`
<!-- What do you think should happen? -->
### Actual behavior
The returned buffer's length is not correct, and `createBuffer` from it results in wrong image
<!-- What actually happens? -->
### How to reproduce
The repo to reproduce is https://github.com/KagamiChan/electron-quick-start/tree/nativeimage-crop (branch `nativeimage-crop`). The renderer script reads the lenna picture, crops it and reconstructs the cropped part using `toBitmap` and `createFromBuffer`:
```js
const { nativeImage } = require('electron')
const { resolve } = require('path')
const { writeFile } = require('fs')
const image = nativeImage.createFromPath(resolve(__dirname, './lena_std.png'))
const { width, height } = image.getSize()
const bufferLength = image.toBitmap().length
console.log('original image', width, height, bufferLength, width * height * 4)
const crop = image.crop({x: 20, y: 20, width: 220, height: 330})
const { width:cropWidth, height:cropHeight } = crop.getSize()
const cropLength = crop.toBitmap().length
const _cropLength = crop.getBitmap().length
console.log('cropped image', cropWidth, cropHeight, cropLength, _cropLength, cropWidth * cropHeight * 4)
writeFile(resolve(__dirname, './crop.png'), crop.toPNG(), e => {if (e) console.error(e)})
const buffer = crop.toBitmap()
const crop2 = nativeImage.createFromBuffer(buffer, {
width: cropWidth,
height: cropHeight,
})
const cropLength2 = crop2.toBitmap().length
const _cropLength2 = crop2.getBitmap().length
console.log('cropped and restored image', cropWidth, cropHeight, cropLength2, _cropLength2, cropWidth * cropHeight * 4)
const pngBuffer = crop2.toPNG()
writeFile(resolve(__dirname, './crop2.png'), pngBuffer, e => {if (e) console.error(e)})
```
the console log:
```
original image 512 512 1048576 1048576
cropped image 220 330 674672 674672 290400
cropped and restored image 220 330 290400 290400 290400
```
Observations:
- the nativeImage created from lenna picture gives a buffer length that equals to `width * height * 4`
- the cropped nativeImage object returns a buffer with much larger size, since a node buffer's length is the memory allocated, this could happen
- however, the reconstructed nativeImage object's content is not what we expected
crop.png (what we expect)

crop2.png (the reconstructed)

In my opinion `toBitmap` method is most suspicious but `crop` is another possibility because there's another issue (#8017) related to it
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/9351
|
https://github.com/electron/electron/pull/25757
|
a189dc779e3badf4d7551a3e7af268dabf4e9761
|
485adae94ca37e405aef707fc735e74a57bcc0a0
| 2017-05-02T12:28:05Z |
c++
| 2020-10-05T01:15:16Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,342 |
["atom/browser/net/url_request_fetch_job.cc"]
|
IO thread crash using custom protocol
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.7
* Operating system: macOS
### Expected behavior
No crashes using custom protocol
### Actual behavior
Crash on IO thread:
```
Thread 14 Crashed:: Chrome_IOThread
0 libnet.dylib 0x0000000115145fb0 net::URLRequestJob::ReadRawDataComplete(int) + 128
1 com.github.electron.framework 0x000000010d04af80 atom::URLRequestFetchJob::OnURLFetchComplete(net::URLFetcher const*) + 192 (url_request_fetch_job.cc:262)
2 libbase.dylib 0x000000010ffb3591 base::debug::TaskAnnotator::RunTask(char const*, base::PendingTask*) + 225
3 libbase.dylib 0x000000010ffe19e6 base::MessageLoop::RunTask(base::PendingTask*) + 390
4 libbase.dylib 0x000000010ffe1cbc base::MessageLoop::DeferOrRunPendingTask(base::PendingTask) + 44
5 libbase.dylib 0x000000010ffe2073 base::MessageLoop::DoWork() + 371
6 libbase.dylib 0x000000010ffe4185 base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) + 245
7 libbase.dylib 0x000000010ffe174e base::MessageLoop::RunHandler() + 94
8 libbase.dylib 0x0000000110009503 base::RunLoop::Run() + 115
9 libcontent.dylib 0x0000000112b0f748 content::BrowserThreadImpl::IOThreadRun(base::RunLoop*) + 24
10 libcontent.dylib 0x0000000112b0f8d6 content::BrowserThreadImpl::Run(base::RunLoop*) + 294
11 libbase.dylib 0x000000011003dec2 base::Thread::ThreadMain() + 386
12 libbase.dylib 0x0000000110036a57 0x10ffa4000 + 600663
13 libsystem_pthread.dylib 0x00007fffc8d1a9af _pthread_body + 180
14 libsystem_pthread.dylib 0x00007fffc8d1a8fb _pthread_start + 286
15 libsystem_pthread.dylib 0x00007fffc8d1a101 thread_start + 13
```
### How to reproduce
#### index.js
```js
const {app, protocol, BrowserWindow} = require('electron')
let mainWindow
app.once('ready', () => {
protocol.registerHttpProtocol('test', (request, callback) => {
callback({url: 'https://cure53.de'})
})
mainWindow = new BrowserWindow()
mainWindow.loadURL(`file://${__dirname}/index.html`)
})
```
#### index.html
```html
<iframe src="test://whatever"></iframe>
```
|
https://github.com/electron/electron/issues/9342
|
https://github.com/electron/electron/pull/10918
|
52cbec24389fcd6bb0ef4eeb11bed268fd3ef208
|
3230048f8129267ab2f0f000a9235dcc20e0f8be
| 2017-05-01T16:25:54Z |
c++
| 2017-10-26T09:35:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,303 |
["atom/renderer/atom_renderer_client.cc"]
|
Crash running post navigation spec
|
Seeing a flaky spec on CI that seems to be related to creating the node environment:
```
not ok 688 <webview> tag nodeintegration attribute loads node symbols after POST navigation when set
Error: Timeout of 180000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves.
at C:\Users\electron\workspace\electron-win-ia32\spec\node_modules\mocha\lib\runnable.js:232:19
```
On Windows the stack is pretty consistent and appears to be heap corruption:
```
std::_Deallocate(void * _Ptr, unsigned int _Count, unsigned int _Sz) Line 132
std::allocator<char>::deallocate(char * _Ptr, unsigned int _Count) Line 720
std::_Wrap_alloc<std::allocator<char> >::deallocate(char * _Ptr, unsigned int _Count) Line 988
std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Tidy(bool _Built, unsigned int _Newsize) Line 2260
std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> >() Line 1018
std::basic_string<char,std::char_traits<char>,std::allocator<char> >::`scalar deleting destructor'(unsigned int)
std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >::destroy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >(std::basic_string<char,std::char_traits<char>,std::allocator<char> > * _Ptr) Line 745
std::allocator_traits<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::destroy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >(std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > & _Al, std::basic_string<char,std::char_traits<char>,std::allocator<char> > * _Ptr) Line 865
std::_Wrap_alloc<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::destroy<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >(std::basic_string<char,std::char_traits<char>,std::allocator<char> > * _Ptr) Line 1003
std::_Destroy_range1<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::basic_string<char,std::char_traits<char>,std::allocator<char> > *>(std::basic_string<char,std::char_traits<char>,std::allocator<char> > * _First, std::basic_string<char,std::char_traits<char>,std::allocator<char> > * _Last, std::_Wrap_alloc<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > & _Al, std::integral_constant<bool,0> __formal) Line 1101
std::_Destroy_range<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::basic_string<char,std::char_traits<char>,std::allocator<char> > *>(std::basic_string<char,std::char_traits<char>,std::allocator<char> > * _First, std::basic_string<char,std::char_traits<char>,std::allocator<char> > * _Last, std::_Wrap_alloc<std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > > & _Al) Line 1118
std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Destroy(std::basic_string<char,std::char_traits<char>,std::allocator<char> > * _First, std::basic_string<char,std::char_traits<char>,std::allocator<char> > * _Last) Line 1581
std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::_Tidy() Line 1641
std::vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >::~vector<std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::allocator<std::basic_string<char,std::char_traits<char>,std::allocator<char> > > >() Line 977
atom::NodeBindings::CreateEnvironment(v8::Local<v8::Context> context) Line 207
atom::AtomRendererClient::DidCreateScriptContext(v8::Local<v8::Context> context, content::RenderFrame * render_frame) Line 104
atom::AtomRenderFrameObserver::DidCreateScriptContext(v8::Local<v8::Context> context, int extension_group, int world_id) Line 30
```
On macOS the crashes seem sort of different each time. The crashed thread is always a `CompositorTileWorker` but the main thread is always in the middle of creating the new node environment when the crash happens.
```
Thread 0:: CrRendererMain Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fffc8c2f42a __getattrlist + 10
1 libsystem_c.dylib 0x00007fffc8bb770b realpath$DARWIN_EXTSN + 824
2 libnode.dylib 0x0000000105ceb76b uv_exepath + 171 (darwin.c:81)
3 libnode.dylib 0x0000000105bea7f8 node::SetupProcessObject(node::Environment*, int, char const* const*, int, char const* const*) + 9736 (node.cc:3306)
4 libnode.dylib 0x0000000105bcd8af node::Environment::Start(int, char const* const*, int, char const* const*, bool) + 975 (env.cc:92)
5 libnode.dylib 0x0000000105bf0b92 node::CreateEnvironment(node::IsolateData*, v8::Local<v8::Context>, int, char const* const*, int, char const* const*) + 178 (node.cc:4425)
6 com.github.electron.framework 0x00000001040d43f2 atom::NodeBindings::CreateEnvironment(v8::Local<v8::Context>) + 2722 (node_bindings.cc:176)
7 com.github.electron.framework 0x00000001040f6b3f atom::AtomRendererClient::DidCreateScriptContext(v8::Local<v8::Context>, content::RenderFrame*) + 319 (atom_renderer_client.cc:104)
8 com.github.electron.framework 0x00000001040f062e atom::AtomRenderFrameObserver::DidCreateScriptContext(v8::Local<v8::Context>, int, int) + 126 (atom_render_frame_observer.cc:32)
9 libcontent.dylib 0x0000000109fbae0a content::RenderFrameImpl::didCreateScriptContext(blink::WebLocalFrame*, v8::Local<v8::Context>, int, int) + 218
10 libblink_core.dylib 0x000000010717989c 0x107114000 + 415900
11 libblink_core.dylib 0x0000000107136f42 blink::ScriptController::initializeMainWorld() + 82
```
```
Thread 0:: CrRendererMain Dispatch queue: com.apple.main-thread
0 libv8.dylib 0x000000010a92f5b4 0x10a3e5000 + 5547444
1 libv8.dylib 0x000000010a927b9a 0x10a3e5000 + 5516186
2 libv8.dylib 0x000000010a3edf12 0x10a3e5000 + 36626
3 libv8.dylib 0x000000010a3eb7c5 0x10a3e5000 + 26565
4 libv8.dylib 0x000000010a3eb3eb 0x10a3e5000 + 25579
5 libv8.dylib 0x000000010a409481 v8::FunctionTemplate::GetFunction(v8::Local<v8::Context>) + 289
6 com.github.electron.framework 0x000000010803f930 bool mate::Dictionary::SetMethod<void (*)()>(base::BasicStringPiece<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&, void (* const&)()) + 128 (dictionary.h:113)
7 com.github.electron.framework 0x0000000108333bff atom::AtomBindings::BindTo(v8::Isolate*, v8::Local<v8::Object>) + 207 (atom_bindings.cc:97)
8 com.github.electron.framework 0x00000001083c9bb6 atom::AtomRendererClient::DidCreateScriptContext(v8::Local<v8::Context>, content::RenderFrame*) + 438 (atom_renderer_client.cc:108)
9 com.github.electron.framework 0x00000001083c362e atom::AtomRenderFrameObserver::DidCreateScriptContext(v8::Local<v8::Context>, int, int) + 126 (atom_render_frame_observer.cc:32)
10 libcontent.dylib 0x000000010decbe0a content::RenderFrameImpl::didCreateScriptContext(blink::WebLocalFrame*, v8::Local<v8::Context>, int, int) + 218
11 libblink_core.dylib 0x000000010b0b989c 0x10b054000 + 415900
12 libblink_core.dylib 0x000000010b076f42 blink::ScriptController::initializeMainWorld() + 82
```
```
Thread 0:: CrRendererMain Dispatch queue: com.apple.main-thread
0 libv8.dylib 0x000000010894b1ad 0x10841f000 + 5423533
1 libv8.dylib 0x00000001089409bb 0x10841f000 + 5380539
2 libv8.dylib 0x000000010894b37f 0x10841f000 + 5423999
3 libv8.dylib 0x000000010894c95a 0x10841f000 + 5429594
4 libv8.dylib 0x0000000108915024 v8::internal::LookupIterator::PrepareTransitionToDataProperty(v8::internal::Handle<v8::internal::JSObject>, v8::internal::Handle<v8::internal::Object>, v8::internal::PropertyAttributes, v8::internal::Object::StoreFromKeyed) + 196
5 libv8.dylib 0x000000010893bc0e 0x10841f000 + 5360654
6 libv8.dylib 0x0000000108a81df3 0x10841f000 + 6696435
7 libv8.dylib 0x000000010843b883 v8::Object::Set(v8::Local<v8::Context>, v8::Local<v8::Value>, v8::Local<v8::Value>) + 291
8 libv8.dylib 0x000000010843ba01 v8::Object::Set(v8::Local<v8::Value>, v8::Local<v8::Value>) + 113
9 libnode.dylib 0x0000000107b8390f node::Environment::SetMethod(v8::Local<v8::Object>, char const*, void (*)(v8::FunctionCallbackInfo<v8::Value> const&)) + 239 (env-inl.h:426)
10 libnode.dylib 0x0000000107ba4ef9 node::SetupProcessObject(node::Environment*, int, char const* const*, int, char const* const*) + 11529 (node.cc:3372)
11 libnode.dylib 0x0000000107b878af node::Environment::Start(int, char const* const*, int, char const* const*, bool) + 975 (env.cc:92)
12 libnode.dylib 0x0000000107baab92 node::CreateEnvironment(node::IsolateData*, v8::Local<v8::Context>, int, char const* const*, int, char const* const*) + 178 (node.cc:4425)
13 com.github.electron.framework 0x00000001060953f2 atom::NodeBindings::CreateEnvironment(v8::Local<v8::Context>) + 2722 (node_bindings.cc:176)
14 com.github.electron.framework 0x00000001060b7b3f atom::AtomRendererClient::DidCreateScriptContext(v8::Local<v8::Context>, content::RenderFrame*) + 319 (atom_renderer_client.cc:104)
15 com.github.electron.framework 0x00000001060b162e atom::AtomRenderFrameObserver::DidCreateScriptContext(v8::Local<v8::Context>, int, int) + 126 (atom_render_frame_observer.cc:32)
16 libcontent.dylib 0x000000010d01fe0a content::RenderFrameImpl::didCreateScriptContext(blink::WebLocalFrame*, v8::Local<v8::Context>, int, int) + 218
17 libblink_core.dylib 0x000000010914689c 0x1090e1000 + 415900
18 libblink_core.dylib 0x0000000109103f42 blink::ScriptController::initializeMainWorld() + 82
```
I think this might be related to #8811, if I comment out the `node:FreeEnvironment` calls I am unable to get it to crash.
The crash is pretty consistent on Windows if you just set this spec to run 1000 times in the same spec runner, it will crash usually after ~100 runs.
|
https://github.com/electron/electron/issues/9303
|
https://github.com/electron/electron/pull/10099
|
d38c9a4644215c8095c3a115ebecd5e7649e8d22
|
5b7cf19ced024fc8caf34347b10eead779cb4b69
| 2017-04-26T23:31:20Z |
c++
| 2017-07-31T01:41:45Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,298 |
["atom/browser/ui/cocoa/atom_touch_bar.mm", "docs/api/touch-bar-segmented-control.md", "lib/browser/api/touch-bar.js"]
|
removing space between TouchBar buttons
|
How can I make TouchBar buttons smaller and or remove the space between buttons?
|
https://github.com/electron/electron/issues/9298
|
https://github.com/electron/electron/pull/9315
|
1e4b99bd7f51061e7028b70d39de2fc7ff46856b
|
eebae82bc1c48c51e1f2fd7b3f99ae6d4958c8e0
| 2017-04-26T16:02:52Z |
c++
| 2017-05-04T21:16:28Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,296 |
["lib/browser/api/navigation-controller.js", "spec/chromium-spec.js"]
|
Strange behavior after Electron v1.3.5
|
* Electron version: >= 1.3.6
* Operating system: Windows 7 and 8, macOS 10.12.4
### Expected behavior
See previous view

### Actual behavior
Still on current view

### How to reproduce:
1) Enter your username/email then click "Next"
2) Click "Back"
___
I took this issue on large project and I tried to reproduce it and I got!
This issue works only after electron 1.3.6
On 1.3.5 and below or in in last versions of Chromium I don't get this behavior.
For reproducing this issue I used this simple application:
```javascript
const electron = require('electron');
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;
app.on('ready', () => {
const win = new BrowserWindow({
'title' : app.getName(),
'width' : 800,
'height' : 600
});
win.loadURL('https://login.live.com/');
win.openDevTools();
win.on('closed', app.quit);
});
```
|
https://github.com/electron/electron/issues/9296
|
https://github.com/electron/electron/pull/9468
|
dfa4af221086dcb3b2a33f278bc13ae8ff415ec4
|
53b6ee0e3ff3b5abd2f28cd52cc29e4e0d6cb570
| 2017-04-26T15:49:11Z |
c++
| 2017-06-05T21:47:49Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,277 |
["docs/api/ipc-main.md"]
|
ipcMain.removeAllListeners fails
|
According to the documentation the [channel] parameter is optional but it looks like that's incorrect.
From the documentation
----
```
ipcMain.removeAllListeners([channel])
channel String (optional)
Removes all listeners, or those of the specified channel.
```
From ipc-main.js
----
```
emitter.removeAllListeners = function (...args) {
if (args.length === 0) {
throw new Error('Removing all listeners from ipcMain will make Electron internals stop working. Please specify a event name')
}
removeAllListeners(...args)
}
```
|
https://github.com/electron/electron/issues/9277
|
https://github.com/electron/electron/pull/9580
|
1257dee0b524750a1967da6a52e5134f6855e889
|
0d2aa5c027b34cd1b3218bcc416cdd8a7324998a
| 2017-04-24T16:47:34Z |
c++
| 2017-05-24T23:31:06Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,276 |
["atom/renderer/atom_sandboxed_renderer_client.cc", "lib/sandboxed_renderer/init.js", "spec/fixtures/module/preload-context.js", "spec/webview-spec.js"]
|
preload script cannot be loaded if Content Security Policy is enabled
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.5
* Operating system: macOS
### Expected behavior
Preload script can be loaded even if CSP is enabled
### Actual behavior
Preload script is prevented from being loaded by CSP
### How to reproduce
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
I could not prepare server with CSP, so let me show the sequence to reproduce with my app...
1. Download v0.2.2 from https://github.com/rhysd/Mstdn/releases
2. Unarchive it and copy [this config.json](https://gist.github.com/rhysd/9f656d4e93f40fe2e41752dfbe08cdc5) to `~/Application Support/Mstdn/config.json`
3. Open app with `$ NODE_ENV=development /path/to/Mstdn.app/Contents/MacOS/Mstdn`
4. It will open DevTools for browser window. Console tab should show the error.
In my app, browser window is opened with `nodeIntegration: false` and `preload: '...'` web preferences for external URL https://mstdn.jp where CSP is enabled.
Above sequence show following error.
<img width="800" alt="2017-04-25 0 53 55" src="https://cloud.githubusercontent.com/assets/823277/25346121/b8e7cf7c-2951-11e7-92bd-1b6c12193461.png">
It says that `eval` cannot be used because of CSP. The `eval` is used at VM28:784 for loading preload script specified with `preload: '...'` option on creating `BrowserWindow` instance.
Following is a screenshot of the code:
<img width="912" alt="2017-04-25 0 57 17" src="https://cloud.githubusercontent.com/assets/823277/25346295/2f126c98-2952-11e7-8186-9d4f5756a630.png">
Preload script is loaded with `eval()` function but it is blocked. Is it possible to remove the check by CSP while loading preload script?
Preload script is a way for loading some user script even if Node integration is disabled for external browser AFAIK. So, if it is blocked by CSP, preload script can no longer used for injecting some code to external page safely.
|
https://github.com/electron/electron/issues/9276
|
https://github.com/electron/electron/pull/13032
|
e922b1733b5bbfb9e67626b07effbb802f81cc13
|
ffc15e02a6ae480763d7d5a52bf0217467ba56de
| 2017-04-24T16:01:00Z |
c++
| 2018-07-13T02:17:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,257 |
["atom/browser/api/atom_api_debugger.cc", "spec/api-debugger-spec.js"]
|
Debugger fails to sendCommand `Network.getResponseBody` for specific file with special characters
|
Electron's webContent's debugger fails to download the content of the file when the content contains special characters. It crashes with Segmentation Fault on using `win.webContents.debugger.sendCommand('Network.getResponseBody', ...)`.
First noticed on the stable version of Electron, and later I reproduced it on the code taken from GitHub and compiled locally.
I have also tested it in Chrome directly using `--remote-debugging-port` to see if the remote dev tools in chrome would have the same issue, but it worked fine there.
* Electron version: 1.6.7
* Operating system: MacOS Sierra 10.12.4
### Expected behavior
Debugger should successfully download the file's content.
### Actual behavior
Debugger crashes with Segmentation Fault.
### How to reproduce
This is a branch that reproduces the issue: https://github.com/domderen/electron-quick-start/tree/debugger_bug
To run it, just do:
```
npm install
npm start
```
With those environment variables:
```
export ELECTRON_ENABLE_LOGGING=1
export ELECTRON_ENABLE_STACK_DUMPING=1
```
It produces this output:
```
$ npm start
> [email protected] start /Users/dominik/dev/electron-quick-start
> electron .
app ready { http_parser: '2.7.0',
node: '7.4.0',
v8: '5.6.326.50',
uv: '1.10.1',
zlib: '1.2.8',
ares: '1.10.1-DEV',
modules: '53',
openssl: '1.0.2j',
electron: '1.6.7',
chrome: '56.0.2924.87',
'atom-shell': '1.6.7' }
attaching debugger
debugger attached
got debugger message
got debugger message
got debugger message
got debugger message
Loading finished: 73514.1
Received signal 11 SEGV_MAPERR 000000000008
[0x000105018146]
[0x7fff96777b3a]
[0x7fff5ae3b400]
[0x000104df1929]
[0x000104df1bfd]
[0x0001052baa4f]
[0x0001054443b9]
[0x000105444296]
[0x00010544418e]
[0x0001055d7c9d]
[0x000105448541]
[0x000105acbe3b]
[0x000105027fc1]
[0x000104ffba06]
[0x000104ffbcdc]
[0x000104ffc023]
[0x000104fff36d]
[0x000104fbc21a]
[0x000104ffede4]
[0x7fff80e253c1]
[0x7fff80e062cd]
[0x7fff80e057c6]
[0x7fff80e051c4]
[0x7fff80366ebc]
[0x7fff80366cf1]
[0x7fff80366b26]
[0x7fff7e901e24]
[0x7fff7f07d85e]
[0x7fff7e8f67ab]
[0x000104fffbbe]
[0x000104fff22c]
[0x000104ffb76e]
[0x0001050102c3]
[0x0001052604db]
[0x000105260330]
[0x000105262a72]
[0x00010525c40c]
[0x0001051c1f7d]
[0x0001051c1076]
[0x000104dcb787]
[0x000104dc0f26]
[0x7fff96568235]
[end of stack trace]
```
I started debugging the issue a bit in the Electron code, using the `lldb` debugger. It seems to be caused by this line of code: https://github.com/electron/electron/blob/master/atom/browser/api/atom_api_debugger.cc#L49
The file that is loaded with loadURL in the provided repo is loading a single unicode character "\uFFFF". That character seems the JSONReader used in the Atom Debugger on this line:
`std::unique_ptr<base::Value> parsed_message(base::JSONReader::Read(message));`
When this file is loaded, the message is equal to:
`{"id":2,"result":{"body":"\uFFFF","base64Encoded":false}}`
Which JSONReader is not able to parse as a valid JSON, and is returning a null_ptr for. Because of that the next line, which is trying to do `parsed_message->IsType` is crashing electron because of `Stop reason: EXC_BAD_ACCESS (code=1, address=0x8)`.
Hope this will help with fixing the issue.
I'm afraid that the problem is with the JSONReader / JSONParser library, which seems to be taken straight from the libchromiumcontent library, and it might be quite problematic to fix. But at the same time, this problem exists only in Electron, Chromium is able to handle this character fine in the normal debugger and in the remote debugger protocol.
|
https://github.com/electron/electron/issues/9257
|
https://github.com/electron/electron/pull/9322
|
f84c75aa1aaa903d893a87a2111517ffdfec5cc1
|
98d17d64efff7a713de8c8a10baa7179445a044e
| 2017-04-21T22:31:27Z |
c++
| 2017-05-01T17:44:14Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,197 |
["vendor/brightray"]
|
Crash after performing selection of text using touch gestures
|
* Electron version: 1.6.2 (also on latest 1.6.6)
* Operating system: Windows
### Expected behavior
No crash.
### Actual behavior
Crash
### How to reproduce
Launch electron (default app). Select text using touch gestures.
stack trace
# ChildEBP RetAddr
```
00 03b7d854 00b717d0 electron!base::ObserverListBase<aura::client::TransientWindowClientObserver>::begin+0x3
01 03b7d940 008c908f electron!wm::TransientWindowManager::AddTransientChild+0x5a
02 03b7d94c 0062961c electron!wm::AddTransientChild+0x16
03 03b7da48 00602a41 electron!views::NativeWidgetAura::InitNativeWidget+0x10a
04 03b7db74 00b70af5 electron!views::Widget::Init+0x2ba
05 03b7dc6c 00b70a0d electron!views::BubbleDialogDelegateView::CreateBubble+0x10c
06 03b7dc80 008c8b3d electron!views::BubbleDialogDelegateView::CreateBubble+0x24
07 03b7dcc0 008c8ff2 electron!views::TouchSelectionMenuRunnerViews::Menu::Menu+0x136
08 03b7dce0 009ab0d3 electron!views::TouchSelectionMenuRunnerViews::OpenMenu+0x3b
09 03b7dd70 00bea44d electron!content::TouchSelectionControllerClientAura::ShowQuickMenu+0x1ba
0a 03b7e4f8 005fa67c electron!content::RenderWidgetHostViewEventHandler::OnTouchEvent+0x175
0b 03b7e510 008887cd electron!ui::EventHandler::OnEvent+0x6d
0c 03b7e528 00888b0c electron!ui::EventDispatcher::DispatchEvent+0x3d
0d 03b7e544 008889d7 electron!ui::EventDispatcher::ProcessEvent+0x8e
0e 03b7e578 00888874 electron!ui::EventDispatcherDelegate::DispatchEventToTarget+0x2a
0f 03b7e650 00ab718d electron!ui::EventDispatcherDelegate::DispatchEvent+0x87
10 03b7e738 008910fd electron!ui::EventProcessor::OnEventFromSource+0x130
11 03b7e804 0089120f electron!ui::EventSource::DeliverEventToProcessor+0x50
12 03b7e8e8 00614e61 electron!ui::EventSource::SendEventToProcessor+0xd6
13 03b7ec40 008a8653 electron!views::DesktopWindowTreeHostWin::HandleTouchEvent+0x1c2
14 03b7ec6c 008a67a9 electron!views::HWNDMessageHandler::HandleTouchEvents+0x54
15 03b7ec80 008aad49 electron!base::internal::InvokeHelper<1,void>::MakeItSo<void (__thiscall views::HWNDMessageHandler::*const &)(std::vector<ui::TouchEvent,std::allocator<ui::TouchEvent> > const &),base::WeakPtr<views::HWNDMessageHandler> const &,std::vector<ui::TouchEvent,std::allocator<ui::TouchEvent> > const &>+0x29
16 03b7ec94 0045382e electron!base::internal::Invoker<base::internal::BindState<void (__thiscall views::HWNDMessageHandler::*)(std::vector<ui::TouchEvent,std::allocator<ui::TouchEvent> > const &),base::WeakPtr<views::HWNDMessageHandler>,std::vector<ui::TouchEvent,std::allocator<ui::TouchEvent> > >,void __cdecl(void)>::Run+0x17
17 03b7ecfc 00409b2d electron!base::debug::TaskAnnotator::RunTask+0x11e
18 03b7f960 004089b6 electron!base::MessageLoop::RunTask+0x4cd
19 03b7fad0 0045499d electron!base::MessageLoop::DoWork+0x276
1a 03b7fb00 0045507a electron!base::MessagePumpForUI::DoRunLoop+0x5d
1b 03b7fb28 0040964e electron!base::MessagePumpWin::Run+0x4a
1c 03b7fbf0 00400275 electron!base::MessageLoop::RunHandler+0x5e
1d 03b7fc14 006eebf9 electron!base::RunLoop::Run+0x65
1e 03b7fc4c 006ef9e3 electron!content::BrowserMainLoop::MainMessageLoopRun+0x6e
1f 03b7fc6c 00904462 electron!content::BrowserMainLoop::RunMainMessageLoopParts+0x5b
20 03b7fc84 0063b6af electron!content::BrowserMain+0x82
21 03b7fc98 0063b5ff electron!content::RunNamedProcessTypeMain+0x7f
22 03b7fcec 00490b85 electron!content::ContentMainRunnerImpl::Run+0x91
23 03b7fcfc 002134a2 electron!content::ContentMain+0x23
24 03b7fd9c 0277850d electron!wWinMain+0x163
25 03b7fde8 75058744 electron!operator new[]+0x1c7
26 03b7fdfc 7771587d KERNEL32!BaseThreadInitThunk+0x24
27 03b7fe44 7771584d ntdll_776b0000!__RtlUserThreadStart+0x2f
28 03b7fe54 00000000 ntdll_776b0000!_RtlUserThreadStart+0x1b
```

|
https://github.com/electron/electron/issues/9197
|
https://github.com/electron/electron/pull/9204
|
3af50b92ca74eb3945ef018ad5ede7502e614e6b
|
81879f8f8addd95b03c8671ee8f6bf80f89104f8
| 2017-04-15T01:55:10Z |
c++
| 2017-04-16T16:52:11Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,191 |
["atom/common/api/object_life_monitor.cc", "atom/common/api/object_life_monitor.h"]
|
memory leak in 1.6.7 when using window.open
|
* Electron version: 1.6.7
* Operating system: Mac OS X 10.10.5 and Windows 8.1
I realize 1.6.7 is still in beta but thought I should report a memory leak I am seeing... in a simple app that does window.open with every new window opened the memory keeps growing and is never released when the sub-windows get closed.
The demo repo is committed here: https://github.com/lneir/electron-memory-leak
To repo.
1. git clone https://github.com/lneir/electron-memory-leak.git
2. npm i
3. npm run start
4. in the main window click the open window button 5 times.
Notice: the memory goes very high (approx 500 Mbytes) because each sub-window is allocating a big chunk of memory.
5. now close all the open windows.
Result: the memory of the renderer process stays very high
Expected: memory to go back to original before all sub-windows were opened.
Note: This does not happen on electron 1.4.16 but only appears to be a problem in electron 1.6.7.
Note: Also the problem seems to be related to the having preload enabled
|
https://github.com/electron/electron/issues/9191
|
https://github.com/electron/electron/pull/9314
|
79b02ca71eaaf5504173a595e85d929f5c23e512
|
ca7ca3ba1c51652392744aab99e8c1f1221da524
| 2017-04-14T02:54:27Z |
c++
| 2017-05-01T06:49:13Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,183 |
["atom/browser/ui/message_box_mac.mm", "docs/api/dialog.md"]
|
No yellow triangle in warning dialog on macOS
|
* Electron version: 1.6.2
* Operating system: macOS 10.12.4 (Sierra)
### Expected behavior
App icon should appear smaller next to the system warning dialog triangle icon:
<img width="516" alt="screen shot 2017-04-13 at 13 35 32" src="https://cloud.githubusercontent.com/assets/521176/25003186/7f186d94-204e-11e7-9b6f-e1a8c525fb94.png">
([source](https://developer.apple.com/library/content/documentation/UserExperience/Conceptual/OSXHIGuidelines/WindowAlerts.html))
### Actual behavior
Only the app icon is shown at full size
### How to reproduce
```javascript
var options = {
type: 'warning',
title: "Warning",
message: "Message.",
detail: "Detailed description.",
buttons: ['Reset AppName', 'Quit'],
cancelId: 1,
defaultId: 0
};
dialog.showMessageBox(options, function (index) {
// Clicked button index
});
```
|
https://github.com/electron/electron/issues/9183
|
https://github.com/electron/electron/pull/9187
|
0c1d60381df21f9c1f06a641eaf97ca4d3dec65e
|
3af50b92ca74eb3945ef018ad5ede7502e614e6b
| 2017-04-13T11:44:16Z |
c++
| 2017-04-14T16:27:49Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,170 |
["atom/browser/native_window_mac.mm", "spec/api-browser-window-spec.js"]
|
alwaysOnTop window disappears when restored from the application icon
|
* Electron version: 1.6.2
* Operating system: Mac OS Serra
### Expected behavior
Restoring browser window with always on top should restore
### Actual behavior
with always on top set and minimze window into application icon window restoring a minimized window will show and then disappear and lost forever.
### How to reproduce
$ git clone https://github.com/jschimmoeller/app-icon-consolidate.git
$ npm install
$ npm start
make sure Minize windows into application icon is set

steps:
1. minimize app
2. click on electron icon in dock to restore
3. window will restore and then disappear
|
https://github.com/electron/electron/issues/9170
|
https://github.com/electron/electron/pull/9695
|
48f5a66f87b91ea840f8ec0950e4082ca572882d
|
0a71a9b992695124a77695568f5ea04bc4798dac
| 2017-04-12T03:54:44Z |
c++
| 2017-07-14T17:09:13Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,139 |
["docs/api/process.md"]
|
Passing --trace-warnings flag to node to print stack of unhandled promise rejections
|
* Electron version: 1.6.2
* Operating system: OSX
### Expected behavior
I should be able to use the `--trace-warnings` flag in node by passing it like this:
```js
app.commandLine.appendSwitch('trace-warnings')
```
This enables stack traces for unhandled promise rejections. Right now, node will print "possibly unhandled promise rejection: <err>" but not print a stack trace, which is incredibly frustrating.
### Actual behavior
Passing the flag to node enables stack traces for unhandled promise warnings.
### How to reproduce
Run this code within `index.js` of the electron app:
```js
new Promise((resolve, reject) => reject(new Error("foo")))
```
|
https://github.com/electron/electron/issues/9139
|
https://github.com/electron/electron/pull/9824
|
873a315538ae4da500bf73cbad60924d7d658d96
|
727da46971d868775ca7bade5b1c137e5f664805
| 2017-04-07T15:53:13Z |
c++
| 2017-06-26T02:16:33Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,128 |
["docs-translations/ko-KR/tutorial/windows-store-guide.md", "docs-translations/zh-CN/tutorial/windows-store-guide.md", "docs/tutorial/windows-store-guide.md", "electron.gyp", "script/create-dist.py"]
|
Remove unused .dll from distribution.
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.2
* Operating system: Windows
Please remove unused "xinput1_3.dll". According [this ticket](https://codereview.chromium.org/1719693002/) chromium use Windows provided .dll already.
|
https://github.com/electron/electron/issues/9128
|
https://github.com/electron/electron/pull/9157
|
e2a00e423c27a4c58d3e6d938d2d9e7875851850
|
b2761ab7dc5e769f7880f98635a1d7695e27d699
| 2017-04-06T09:19:34Z |
c++
| 2017-04-11T15:52:20Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,121 |
["atom/browser/api/atom_api_web_contents.cc", "atom/browser/api/atom_api_web_contents.h", "spec/api-browser-window-spec.js", "spec/static/main.js"]
|
Crash in RenderFrameHostImpl::SetNavigationHandle
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.3
* Operating system: macOS 10.11.6
We have a few reports of crashes when waking from sleep. I went ahead & symbolicated one of them and attached it below, in case anything jumps out as an obvious mistake.
<details>
```
Process: Slack [88838]
Path: /Applications/Slack.app/Contents/MacOS/Slack
Identifier: com.tinyspeck.slackmacgap
Version: 2.6.0-alpha170330eaa48b0 (4101)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Slack [88838]
User ID: 501
Date/Time: 2017-04-05 10:01:49.718 -0700
OS Version: Mac OS X 10.11.6 (15G1217)
Report Version: 11
Anonymous UUID: 765DA938-1843-3BCC-B543-AB7A3EBB5087
Sleep/Wake UUID: 940B9509-D363-40FC-A181-06F5C11E04DC
Time Awake Since Boot: 1200000 seconds
Time Since Wake: 40 seconds
System Integrity Protection: enabled
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x000000005ce83800
Exception Note: EXC_CORPSE_NOTIFY
VM Regions Near 0x5ce83800:
-->
__TEXT 0000000102d78000-0000000102d79000 [ 4K] r-x/rwx SM=COW /Applications/Slack.app/Contents/MacOS/Slack
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 com.github.electron.framework content::RenderFrameHostImpl::SetNavigationHandle(std::__1::unique_ptr<content::NavigationHandleImpl, std::__1::default_delete<content::NavigationHandleImpl> >) (in Electron Framework) (memory:2577)
1 com.github.electron.framework content::NavigatorImpl::DidStartProvisionalLoad(content::RenderFrameHostImpl*, GURL const&, base::TimeTicks const&) (in Electron Framework) (memory:2780)
2 com.github.electron.framework bool IPC::MessageT<FrameHostMsg_DidStartProvisionalLoad_Meta, std::__1::tuple<GURL, base::TimeTicks>, void>::Dispatch<content::RenderFrameHostImpl, content::RenderFrameHostImpl, void, void (content::RenderFrameHostImpl::*)(GURL const&, base::TimeTicks const&)>(IPC::Message const*, content::RenderFrameHostImpl*, content::RenderFrameHostImpl*, void*, void (content::RenderFrameHostImpl::*)(GURL const&, base::TimeTicks const&)) (in Electron Framework) (tuple.h:144)
3 com.github.electron.framework content::RenderFrameHostImpl::OnMessageReceived(IPC::Message const&) (in Electron Framework) (render_frame_host_impl.cc:755)
4 com.github.electron.framework IPC::ChannelProxy::Context::OnDispatchMessage(IPC::Message const&) (in Electron Framework) (ipc_message.h:131)
5 com.github.electron.framework base::debug::TaskAnnotator::RunTask(char const*, base::PendingTask*) (in Electron Framework) (callback_forward.h:29)
6 com.github.electron.framework base::MessageLoop::RunTask(base::PendingTask*) (in Electron Framework) (vector:638)
7 com.github.electron.framework base::MessageLoop::DeferOrRunPendingTask(base::PendingTask) (in Electron Framework) (message_loop.cc:422)
8 com.github.electron.framework base::MessageLoop::DoWork() (in Electron Framework) (message_loop.cc:515)
9 com.github.electron.framework base::MessagePumpCFRunLoopBase::RunWork() (in Electron Framework) (message_pump_mac.mm:302)
10 com.github.electron.framework base::mac::CallWithEHFrame(void () block_pointer) (in Electron Framework) + 10
11 com.github.electron.framework base::MessagePumpCFRunLoopBase::RunWorkSource(void*) (in Electron Framework) (message_pump_mac.mm:281)
12 com.apple.CoreFoundation 0x00007fff85aea7e1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
13 com.apple.CoreFoundation 0x00007fff85ac9f1c __CFRunLoopDoSources0 + 556
14 com.apple.CoreFoundation 0x00007fff85ac943f __CFRunLoopRun + 927
15 com.apple.CoreFoundation 0x00007fff85ac8e38 CFRunLoopRunSpecific + 296
16 com.apple.HIToolbox 0x00007fff82806935 RunCurrentEventLoopInMode + 235
17 com.apple.HIToolbox 0x00007fff8280676f ReceiveNextEventCommon + 432
18 com.apple.HIToolbox 0x00007fff828065af _BlockUntilNextEventMatchingListInModeWithFilter + 71
19 com.apple.AppKit 0x00007fff90024df6 _DPSNextEvent + 1067
20 com.apple.AppKit 0x00007fff90024226 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 454
21 com.apple.AppKit 0x00007fff90018d80 -[NSApplication run] + 682
22 com.github.electron.framework 0x0000000102fa7f0e 0x102d7f000 + 2264846
23 com.github.electron.framework 0x0000000102fa757c 0x102d7f000 + 2262396
24 com.github.electron.framework 0x0000000102fa3abe 0x102d7f000 + 2247358
25 com.github.electron.framework 0x0000000102fb8613 0x102d7f000 + 2332179
26 com.github.electron.framework 0x000000010320831b 0x102d7f000 + 4756251
27 com.github.electron.framework 0x0000000103208170 0x102d7f000 + 4755824
28 com.github.electron.framework 0x000000010320a8b2 0x102d7f000 + 4765874
29 com.github.electron.framework 0x000000010320424c 0x102d7f000 + 4739660
30 com.github.electron.framework 0x0000000103169e6d 0x102d7f000 + 4107885
31 com.github.electron.framework 0x0000000103168f66 0x102d7f000 + 4104038
32 com.github.electron.framework 0x0000000102d81687 AtomMain + 71
33 com.tinyspeck.slackmacgap 0x0000000102d78f26 main + 38
34 libdyld.dylib 0x00007fff885205ad start + 1
```
</details>
### How to reproduce
We don't have a guaranteed repro yet. I will update this bug as we get more information.
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/9121
|
https://github.com/electron/electron/pull/9674
|
f5989dc12f9d61331a091cd4483beed34a9dda0a
|
352a9268ad3a4612f3110fe762fe752e9b83bab3
| 2017-04-05T18:50:04Z |
c++
| 2017-06-05T17:21:18Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,102 |
["atom/renderer/api/atom_api_web_frame.cc"]
|
FR: Better error reporting for webContents->executeJavaScript
|
* Electron version: 1.6.5
* Operating system: OSX
### Expected behavior
**Possible solutions**
- Set a more useful ```filename``` in the throwed error on the window object for identify where it happened (usefull)
- The result/promise is never resolved now. Maybe it should get a callback with error argument and reject the promise exactly in this case?
**Documentation:**
The documentation requires a better overview where/how to catch errors. Additionally some other information to understand the working of the different contexts.
Something like:
| Location | Unhandled errors | Available modules*** | Exposed variables**** |
|--|--|--|--|
| preload.js | ? | ? | ? |
| executeJavaScript()* | ? | ? | ? |
| page scripts _5)_ | window error handler** | ? | ? |
*) webContents.executeJavaScript function
**) ```window.addEventListener('error', function(errorEvent) {})``` or ```window.onerror = function(...) {}```
***) which modules can be imported by using the ```require``` global function
****) In the global context (can be the window object)
_5)_ all scripts which is executed on the page or it resources
**Web preferences which alter things:**
| Web preference | default | How it alter things |
|--|--|--|
| sandbox | false | describe here... |
| contextIsolation | false | describe here... |
| nodeIntegration | true | describe here... |
| javascript | false | if false then: all javascript execution is prevented |
| webSecurity | false | if false then: describe here... |
### Actual behavior
If you use **executeJavaScript** it's difficult to catch the error which occurs in the passed javascript.
#### In renderer
```window.addEventListener('error', ...)``` is catching the error but the it's limited to the following:
```
column: 0
error: null
filename:
line: 0
message: Script error
```
This changes if I set it to ```webSecurity``` to ```false``` then I get:
```
column: 7
error:
filename:
line: 1
message: Uncaught Error: this is my exception
```
So the problem is now, webSecurity is **disabled**, I think this is the best thing to do. And the **filename** is even now empty, I even now have no clue where it happened.
#### Trough the debugger
I attached and registered the debugger with the domains: ```Debugger.enable``` and ```Log.enable```
```Log.entryAdded``` is never received for errors in ```executeJavaScript``` code.
### How to reproduce
use the options above then:
```JS
webContents.executeJavaScript('throw new Error("this is my exception")')
```
Same for syntax error or others...
In all examples the start options are (+ changes are described):
Start options: ```webSecurity: true, nodeIntegration: false, sandbox: false```
Yes, this is almost the default config except nodeIntegration.
This is not related to the new ```sandbox``` function, it's false - in sandbox mode it's broken entirely: #9073
|
https://github.com/electron/electron/issues/9102
|
https://github.com/electron/electron/pull/18635
|
7d326f6bc524743881675e1bfa2f3a00874c6ca2
|
0fc172fcaf8ad0158d89d5447be39983fd5614b5
| 2017-04-03T22:06:26Z |
c++
| 2019-06-05T22:43:02Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,094 |
["atom/browser/api/atom_api_window.cc", "atom/browser/api/atom_api_window.h", "atom/browser/native_window.cc", "atom/browser/native_window.h", "atom/browser/native_window_mac.h", "atom/browser/native_window_mac.mm", "docs/api/browser-window.md", "spec/api-browser-window-spec.js"]
|
macOS Sierra tabs: control if new window opens inside tab group or separate
|
* Electron version: 1.6.5
* Operating system: macOS Sierra
If you have a window with native tab bar to the top and you open a new window, it will open as separate window. But if you are in fullscreen mode, that new window will be attached as tab. Would it make sense to have API to force a window to open into an existing tab group or not? This would make it possible to give the user the choice of wether a window should open as tab or not independent from being in fullscreen mode or not.
Not even sure such API exists on macOS though.
/cc @tonyganch
|
https://github.com/electron/electron/issues/9094
|
https://github.com/electron/electron/pull/10508
|
68d35dbeb1a2dfbae79be15f08a6f3d02d7d4002
|
745fa707dda6bd679ac91b7deb7e3d48a9c3b422
| 2017-04-03T11:28:39Z |
c++
| 2017-10-03T11:16:50Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,086 |
["atom/browser/ui/cocoa/atom_menu_controller.mm", "docs/api/menu-item.md"]
|
Introduce menu roles for macOS Sierra tabs
|
After https://github.com/electron/electron/pull/9052 landed and you can enable native macOS sierra tabs in Electron apps it would be nice if as an application I could control where this menu item goes to:

My understanding is that a menu item role could help here? That way I would add a menu item to the desired location with that role and not have it show up as first entry without much control from the application itself.
/cc @tonyganch
|
https://github.com/electron/electron/issues/9086
|
https://github.com/electron/electron/pull/10271
|
c51e3c288294fac6b8137e5ef810072b2691841a
|
0694334487a10a9c29632b597874a2fada453d3a
| 2017-04-02T02:08:07Z |
c++
| 2017-09-11T08:41:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,046 |
["lib/browser/init.js"]
|
Indicator icon missing in Ubuntu 17.04
|
* Electron version: multiple
* Operating system: Ubuntu 17.04
### Expected behavior
Electron based apps that provide an indicator icon display the icon
### Actual behavior
Indicator icon is not displayed
### How to reproduce
I have this issue in several up to date Electron based applications. Such as: Slack, Google Desktop Music Manager, Skype, etc...
The work around of `export XDG_CURRENT_DESKTOP=Unity`, mentioned in some older issues does work to fix the issue.
|
https://github.com/electron/electron/issues/9046
|
https://github.com/electron/electron/pull/9716
|
206bca52b7612cf6ec71d4b2f14e52bb4abd5f0a
|
a6ea316a5de1964761a82d9376c23e99eff16d25
| 2017-03-28T14:07:52Z |
c++
| 2017-06-09T22:01:32Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,033 |
["atom/renderer/renderer_client_base.cc"]
|
Enabled webPreferences.scrollBounce not working
|
* Electron version: 1.6.2
* Operating system: macOS 10.12.3 (Sierra)
### Expected behavior
Scrollable elements should bounce (rubber band) when reaching the bounds if a window's `webPreferences.scrollBounce = true`
### Actual behavior
Bouncing does not happen
### How to reproduce
```javascript
var win = new BrowserWindow({
width:800,
height:600,
webPreferences:{
scrollBounce:true
}
});
```
|
https://github.com/electron/electron/issues/9033
|
https://github.com/electron/electron/pull/9134
|
b2761ab7dc5e769f7880f98635a1d7695e27d699
|
a30cf30e93032c46908e9ef739ba841a7def259d
| 2017-03-27T15:48:50Z |
c++
| 2017-04-11T16:08:30Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,025 |
["atom/browser/ui/cocoa/atom_touch_bar.mm", "lib/browser/api/touch-bar.js"]
|
TouchBar PopOver items not updating when props are changed
|
This was reported to me through Slack, basically if you take this code.
```js
let counter = 1;
const button = new TouchBar.TouchBarButton({
label: `${counter}`,
click: () => {
counter += 1;
button.label = `${counter}`;
}
})
let counter2 = 1;
const button2 = new TouchBar.TouchBarButton({
label: `${counter2}`,
click: () => {
counter2 += 1;
button2.label = `${counter2}`;
}
})
const touchBar = new TouchBar([
button2,
new TouchBar.TouchBarPopover({
label: 'Pop',
items: new TouchBar([
button,
])
})
])
mainWindow.setTouchBar(touchBar)
```
You will see that tapping the first button updates the value correctly, but tapping the button inside the popover does not update the value. This is due to us passing in the top level touch bar to our own `refreshTouchBarItems` method.
See https://github.com/electron/electron/blob/master/atom/browser/native_window_mac.mm#L382
This results in a new touchbaritem being created and updated instead of the existing touch bar item in the other touchbar.
My theoretical way of solving this issue is associating each touchbar item identifier with it's owning touchbar through a map in the `AtomTouchBar` class but regardless of how I tried to set that up, it failed miserably every time. Mostly because each `NSTouchBarItemIdentifier*` can be associated with multiple touchbars.
I'm going to keep bashing my head against the wall trying to do this so if anyone can see an easier way please chime in 😄
|
https://github.com/electron/electron/issues/9025
|
https://github.com/electron/electron/pull/9028
|
8c8b737fa23b28fd5a4a90a8dc562b8b0765bcff
|
7574c33ef1b6addde7beaba889bb5403f29c4d5c
| 2017-03-27T09:30:22Z |
c++
| 2017-04-04T21:09:59Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 9,004 |
["atom/common/node_bindings.cc"]
|
macOS: native crash when doing POST navigation in existing window
|
* Electron version: 1.6.4
* Operating system: macOS 10.12.3
This is a continuation from https://github.com/electron/electron/issues/8957
My steps are:
* open VS Code on a specific folder
* open another folder in the running instance (this eventually causes a `loadURL` call of the window)
Full stack:
```
Crashed Thread: 0 CrRendererMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [0]
Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread
0 com.github.electron.framework 0x000000010dbac57c node::Environment::isolate() const + 12 (env-inl.h:225)
1 com.github.electron.framework 0x000000010dc1d02c atom::NodeBindings::UvRunOnce() + 44 (node_bindings.cc:236)
2 com.github.electron.framework 0x000000010dc1e837 void base::internal::FunctorTraits<void (atom::NodeBindings::*)(), void>::Invoke<base::WeakPtr<atom::NodeBindings> const&>(void (atom::NodeBindings::*)(), base::WeakPtr<atom::NodeBindings> const&&&) + 135 (bind_internal.h:214)
3 com.github.electron.framework 0x000000010dc1e72a void base::internal::InvokeHelper<true, void>::MakeItSo<void (atom::NodeBindings::* const&)(), base::WeakPtr<atom::NodeBindings> const&>(void (atom::NodeBindings::* const&&&)(), base::WeakPtr<atom::NodeBindings> const&&&) + 90 (bind_internal.h:308)
4 com.github.electron.framework 0x000000010dc1e6c8 void base::internal::Invoker<base::internal::BindState<void (atom::NodeBindings::*)(), base::WeakPtr<atom::NodeBindings> >, void ()>::RunImpl<void (atom::NodeBindings::* const&)(), std::__1::tuple<base::WeakPtr<atom::NodeBindings> > const&, 0ul>(void (atom::NodeBindings::* const&&&)(), std::__1::tuple<base::WeakPtr<atom::NodeBindings> > const&&&, base::IndexSequence<0ul>) + 72 (bind_internal.h:361)
5 com.github.electron.framework 0x000000010dc1e61c base::internal::Invoker<base::internal::BindState<void (atom::NodeBindings::*)(), base::WeakPtr<atom::NodeBindings> >, void ()>::Run(base::internal::BindStateBase*) + 44 (bind_internal.h:339)
6 libbase.dylib 0x0000000110a14591 base::debug::TaskAnnotator::RunTask(char const*, base::PendingTask*) + 225
7 libblink_platform.dylib 0x00000001126e02b3 blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue(blink::scheduler::internal::WorkQueue*) + 835
8 libblink_platform.dylib 0x00000001126deeea blink::scheduler::TaskQueueManager::DoWork(base::TimeTicks, bool) + 618
9 libbase.dylib 0x0000000110a14591 base::debug::TaskAnnotator::RunTask(char const*, base::PendingTask*) + 225
10 libbase.dylib 0x0000000110a429e6 base::MessageLoop::RunTask(base::PendingTask*) + 390
11 libbase.dylib 0x0000000110a42cbc base::MessageLoop::DeferOrRunPendingTask(base::PendingTask) + 44
12 libbase.dylib 0x0000000110a43073 base::MessageLoop::DoWork() + 371
13 libbase.dylib 0x0000000110a45c9d 0x110a05000 + 265373
14 libbase.dylib 0x0000000110a34cea base::mac::CallWithEHFrame(void () block_pointer) + 10
15 libbase.dylib 0x0000000110a45714 0x110a05000 + 263956
16 com.apple.CoreFoundation 0x00007fff8af3f981 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
17 com.apple.CoreFoundation 0x00007fff8af20a7d __CFRunLoopDoSources0 + 557
18 com.apple.CoreFoundation 0x00007fff8af1ff76 __CFRunLoopRun + 934
19 com.apple.CoreFoundation 0x00007fff8af1f974 CFRunLoopRunSpecific + 420
20 com.apple.Foundation 0x00007fff8c934612 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
21 libbase.dylib 0x0000000110a4635e base::MessagePumpNSRunLoop::DoRun(base::MessagePump::Delegate*) + 126
22 libbase.dylib 0x0000000110a45b5c 0x110a05000 + 265052
23 libbase.dylib 0x0000000110a4274e base::MessageLoop::RunHandler() + 94
24 libbase.dylib 0x0000000110a6a503 base::RunLoop::Run() + 115
25 libcontent.dylib 0x0000000113afa46f 0x113240000 + 9151599
26 libcontent.dylib 0x0000000113bf470d 0x113240000 + 10176269
27 libcontent.dylib 0x0000000113bf3926 content::ContentMain(content::ContentMainParams const&) + 54
28 com.github.electron.framework 0x000000010d8ad668 AtomMain + 104 (atom_library_main.mm:24)
29 com.github.electron.helper 0x000000010d8a7eff main + 79 (atom_main.cc:142)
30 libdyld.dylib 0x00007fffa0477255 start + 1
```
|
https://github.com/electron/electron/issues/9004
|
https://github.com/electron/electron/pull/9043
|
4441d557a2d25009ad0ff061c4c4a882e1195370
|
9ef1f8cd5d029f0107fe8e0e1d2e1d72bb05d3b9
| 2017-03-24T15:38:35Z |
c++
| 2017-03-29T04:37:07Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,999 |
["atom/browser/api/atom_api_menu.cc", "atom/browser/api/atom_api_menu.h", "atom/browser/ui/atom_menu_model.cc", "atom/browser/ui/atom_menu_model.h", "atom/browser/ui/tray_icon_cocoa.h", "atom/browser/ui/tray_icon_cocoa.mm", "docs/api/menu.md", "spec/api-menu-spec.js"]
|
Support menuDidClose/menuWillOpen
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.2
* Operating system: macOS
### Expected behavior
Allow users to register a callback for menu open and close events.
```javascript
const menu = new Menu()
menu.onOpen(() => { /* Do something when the menu opens */ })
menu.onClose(() => { /* Do something when the menu closes */ })
```
<!-- What do you think should happen? -->
### Actual behavior
Not supported
NSMenuDelegate exposes these events: https://developer.apple.com/reference/appkit/nsmenudelegate
Not sure about Windows or Linux
|
https://github.com/electron/electron/issues/8999
|
https://github.com/electron/electron/pull/11754
|
b0a1575bb716862071a8d51d9e0834a882aeee5b
|
12d4f984f368f263fd47a49a2ab473efbcab8246
| 2017-03-24T01:02:43Z |
c++
| 2018-01-29T17:40:57Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,973 |
["lib/browser/api/menu.js"]
|
Menu popup options will only work with `async`
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.2
* Operating system: Windows 7
Electron's doc for `menu.popup()` mentions that `async` option is not required.
<br />

However, when an option object is passed to `menu.popup()`, `async` seems to be required.
<br /><br />
### Expected behavior
<!-- What do you think should happen? -->
**Pass an empty option object** - should work
```
userMenu.popup(remote.getCurrentWindow(), {});
```
<br />
**Setting only `x` and `y`** - should work
```
userMenu.popup(remote.getCurrentWindow(), {
x: openPosition.x,
y: openPosition.y
});
```
<br /><br /><br />
### Actual behavior
**Pass an empty option object** - throws an error
```
userMenu.popup(remote.getCurrentWindow(), {});
```

<br />
**Setting only `x` and `y`** - throws an error
```
userMenu.popup(remote.getCurrentWindow(), {
x: openPosition.x,
y: openPosition.y
});
```

<br />
**No option object passed** - works fine
```
userMenu.popup(remote.getCurrentWindow());
```
<br />
**Setting `x`, `y`, `async`** - works fine
```
userMenu.popup(remote.getCurrentWindow(), {
x: openPosition.x,
y: openPosition.y,
async: true
});
```
<br />
**Setting only `async` (no `x` and `y`)** - works fine
```
userMenu.popup(remote.getCurrentWindow(), {
async: true
});
```
<br /><br />
<!-- What actually happens? -->
### How to reproduce
```
const electron = require('electron');
const remote = electron.remote;
const Menu = remote.Menu;
var userMenu = Menu.buildFromTemplate([
{
label: "Test",
accelerator: "Ctrl+T",
enabled: true,
click: function(item, focusedWindow) {
// do nothing
}
}
]);
userMenu.popup(remote.getCurrentWindow(), {
x: 100,
y: 100
});
```
<!--
Your best chance of getting this bug looked at quickly is to provide a REPOSITORY that can be cloned and run.
You can fork https://github.com/electron/electron-quick-start and include a link to the branch with your changes.
If you provide a URL, please list the commands required to clone/setup/run your repo e.g.
$ git clone $YOUR_URL -b $BRANCH
$ npm install
$ npm start || electron .
-->
|
https://github.com/electron/electron/issues/8973
|
https://github.com/electron/electron/pull/8974
|
253caf35abaee42f0f40cf7228acd2a5f4fa08c5
|
f7e3f9035da3bf3eb946294a4100b6700bd41bc4
| 2017-03-21T02:48:13Z |
c++
| 2017-03-21T13:36:29Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,960 |
["patches/common/chromium/.patches", "patches/common/chromium/fix_trackpad_scrolling.patch"]
|
Fix support for precision trackpad / mouse scrolling in windows.
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.3
* Operating system: Windows 10
### Expected behavior
When scrolling using a precision trackpad / mouse it should be able to react to WM_MOUSEWHEEL / WM_MOUSEHWHEEL events with deltas < 120, like the ones generated by precision trackpads such as the one from surface pro and others.
This is properly supported by chrome and other browsers.
### Actual behavior
Using such devices to scroll results in a laggy and wrong behavior, making scrolling almost unusable.
### How to reproduce
Just use one of such devices and try to scroll a scrollable page.
|
https://github.com/electron/electron/issues/8960
|
https://github.com/electron/electron/pull/15830
|
d63a84801120215308b4a49271e9b69418de0716
|
5bb35bbdafab3b9e930978f632e3f82ab143e93f
| 2017-03-18T14:39:21Z |
c++
| 2018-11-27T14:26:34Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,957 |
["atom/browser/atom_browser_main_parts.h"]
|
macOS: native crash when quitting app
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.6.3
* Operating system: macOS 10.12.3
### Expected behavior
Electron does not crash natively.
### Actual behavior
Electron after quit presents me with a macOS crash dialog.
### How to reproduce
Still have to work on a repro and find out which Electron version caused this. I can not reproduce with the bare Electron 1.6.3 version. I see it when running VS Code with Electron 1.6.3
Log:
```
Process: Electron [63501]
Path: /Users/USER/*/Code - OSS.app/Contents/MacOS/./Electron
Identifier: com.visualstudio.code.oss
Version: 1.11.0 (1.11.0)
Code Type: X86-64 (Native)
Parent Process: bash [63119]
Responsible: Electron [63501]
User ID: 501
Date/Time: 2017-03-17 21:13:46.723 +0100
OS Version: Mac OS X 10.12.3 (16D32)
Report Version: 12
Anonymous UUID: 3D5A7922-E0E0-4E9F-18BA-3E2F75C953A6
Sleep/Wake UUID: 61BF2513-3F84-46C3-A996-F0C799A8DFD2
Time Awake Since Boot: 76000 seconds
Time Since Wake: 5000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Application Specific Information:
abort() called
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff910d6dd6 __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff911c2787 pthread_kill + 90
2 libsystem_c.dylib 0x00007fff9103c4bb __abort + 140
3 libsystem_c.dylib 0x00007fff9103c42f abort + 144
4 libnode.dylib 0x00000001097f406a 0x10969b000 + 1413226
5 libnode.dylib 0x00000001097f3fd3 uv_async_send + 51
6 com.github.electron.framework 0x00000001054be48b atom::AtomBindings::ActivateUVLoop(v8::Isolate*) + 91
7 com.github.electron.framework 0x00000001053e93e1 0x1053d4000 + 87009
8 com.github.electron.framework 0x00000001053e93af 0x1053d4000 + 86959
9 com.github.electron.framework 0x00000001053e9384 0x1053d4000 + 86916
10 com.github.electron.framework 0x00000001054bfe7a base::internal::Invoker<base::internal::BindState<void (atom::AtomBindings::*)(v8::Isolate*), base::internal::UnretainedWrapper<atom::AtomBindings> >, void (v8::Isolate*)>::Run(base::internal::BindStateBase*, v8::Isolate*&&) + 26
11 com.github.electron.framework 0x00000001053e5a5c 0x1053d4000 + 72284
12 com.github.electron.framework 0x00000001053e57f8 0x1053d4000 + 71672
13 com.github.electron.framework 0x00000001054c005c mate::internal::Dispatcher<void (v8::Isolate*)>::DispatchToCallback(v8::FunctionCallbackInfo<v8::Value> const&) + 124
14 libnode.dylib 0x0000000109896f85 0x10969b000 + 2080645
15 libnode.dylib 0x0000000109947f48 0x10969b000 + 2805576
16 libnode.dylib 0x00000001099474a1 0x10969b000 + 2802849
17 ??? 0x000028ae7f5843a7 0 + 44729925911463
18 ??? 0x000028ae7f766cf7 0 + 44729927888119
19 ??? 0x000028ae7f585cd5 0 + 44729925917909
20 ??? 0x000028ae7f83e924 0 + 44729928771876
21 ??? 0x000028ae7f80d89b 0 + 44729928571035
22 ??? 0x000028ae7f585cd5 0 + 44729925917909
23 ??? 0x000028ae7f83a80d 0 + 44729928755213
24 ??? 0x000028ae7f83dda1 0 + 44729928768929
25 ??? 0x000028ae7f83dbf7 0 + 44729928768503
26 ??? 0x000028ae7f83d953 0 + 44729928767827
27 ??? 0x000028ae7f83cb4a 0 + 44729928764234
28 ??? 0x000028ae7f83c943 0 + 44729928763715
29 ??? 0x000028ae7f585cd5 0 + 44729925917909
30 ??? 0x000028ae7f83c4c8 0 + 44729928762568
31 ??? 0x000028ae7f585cd5 0 + 44729925917909
32 ??? 0x000028ae7f5f1ac3 0 + 44729926359747
33 ??? 0x000028ae7f5b65c1 0 + 44729926116801
34 libnode.dylib 0x0000000109b146d5 0x10969b000 + 4691669
35 libnode.dylib 0x0000000109b14439 v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*) + 169
36 libnode.dylib 0x00000001098b5f8b v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*) + 459
37 libnode.dylib 0x000000010976a31e node::AsyncWrap::MakeCallback(v8::Local<v8::Function>, int, v8::Local<v8::Value>*) + 590
38 libnode.dylib 0x000000010976b9f7 0x10969b000 + 854519
39 libnode.dylib 0x00000001097b4784 node::StreamBase::EmitData(long, v8::Local<v8::Object>, v8::Local<v8::Object>) + 180
40 libnode.dylib 0x00000001097b6627 node::StreamWrap::OnReadImpl(long, uv_buf_t const*, uv_handle_type, void*) + 263
41 libnode.dylib 0x00000001097738bd 0x10969b000 + 886973
42 libnode.dylib 0x00000001097b6fa4 node::StreamWrap::OnReadCommon(uv_stream_s*, long, uv_buf_t const*, uv_handle_type) + 148
43 libnode.dylib 0x00000001097b6ccb node::StreamWrap::OnRead(uv_stream_s*, long, uv_buf_t const*) + 75
44 libnode.dylib 0x00000001097fd274 0x10969b000 + 1450612
45 libnode.dylib 0x00000001097fd1e0 0x10969b000 + 1450464
46 libnode.dylib 0x00000001097fb55b 0x10969b000 + 1443163
47 libnode.dylib 0x0000000109802ca6 0x10969b000 + 1473702
48 libnode.dylib 0x00000001097f4512 uv_run + 146
49 libnode.dylib 0x0000000109768685 0x10969b000 + 841349
50 libnode.dylib 0x0000000109764619 0x10969b000 + 824857
51 libnode.dylib 0x000000010977ce86 node::FreeEnvironment(node::Environment*) + 22
52 com.github.electron.framework 0x000000010546fd6c atom::NodeEnvironment::~NodeEnvironment() + 12
53 com.github.electron.framework 0x000000010546fd79 atom::NodeEnvironment::~NodeEnvironment() + 9
54 com.github.electron.framework 0x0000000105464d84 atom::AtomBrowserMainParts::~AtomBrowserMainParts() + 164
55 com.github.electron.framework 0x0000000105464e19 atom::AtomBrowserMainParts::~AtomBrowserMainParts() + 9
56 com.github.electron.framework 0x0000000105464e2e atom::AtomBrowserMainParts::~AtomBrowserMainParts() + 14
57 com.github.electron.framework 0x00000001058597a5 0x1053d4000 + 4741029
58 com.github.electron.framework 0x00000001058598ae 0x1053d4000 + 4741294
59 com.github.electron.framework 0x000000010585fa6d 0x1053d4000 + 4766317
60 com.github.electron.framework 0x0000000105859258 0x1053d4000 + 4739672
61 com.github.electron.framework 0x00000001057bee6d 0x1053d4000 + 4107885
62 com.github.electron.framework 0x00000001057bdf66 0x1053d4000 + 4104038
63 com.github.electron.framework 0x00000001053d6687 AtomMain + 71
64 com.visualstudio.code.oss 0x00000001053cdf26 main + 38
65 libdyld.dylib 0x00007fff90fa8255 start + 1
Thread 1:
0 libsystem_kernel.dylib 0x00007fff910d74e2 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff911bf5fe _pthread_wqthread + 1023
2 libsystem_pthread.dylib 0x00007fff911bf1ed start_wqthread + 13
Thread 2:
0 libsystem_kernel.dylib 0x00007fff910d74e2 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff911bf791 _pthread_wqthread + 1426
2 libsystem_pthread.dylib 0x00007fff911bf1ed start_wqthread + 13
Thread 3:
0 libsystem_kernel.dylib 0x00007fff910d74e2 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff911bf791 _pthread_wqthread + 1426
2 libsystem_pthread.dylib 0x00007fff911bf1ed start_wqthread + 13
Thread 4:: WorkerPool/14339
0 libsystem_kernel.dylib 0x00007fff910d6c86 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff911c09a3 _pthread_cond_wait + 769
2 com.github.electron.framework 0x00000001055bd6eb 0x1053d4000 + 2004715
3 com.github.electron.framework 0x000000010564e7e9 0x1053d4000 + 2598889
4 com.github.electron.framework 0x000000010564ec47 0x1053d4000 + 2600007
5 com.github.electron.framework 0x00000001056036a7 0x1053d4000 + 2291367
6 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 5:: WorkerPool/14863
0 libsystem_kernel.dylib 0x00007fff910d6c86 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff911c09a3 _pthread_cond_wait + 769
2 com.github.electron.framework 0x00000001055bd6eb 0x1053d4000 + 2004715
3 com.github.electron.framework 0x000000010564e7e9 0x1053d4000 + 2598889
4 com.github.electron.framework 0x000000010564ec47 0x1053d4000 + 2600007
5 com.github.electron.framework 0x00000001056036a7 0x1053d4000 + 2291367
6 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 6:
0 libsystem_kernel.dylib 0x00007fff910d6c86 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff911c096a _pthread_cond_wait + 712
2 libnode.dylib 0x00000001097fe219 uv_cond_wait + 9
3 libnode.dylib 0x00000001097f26c3 0x10969b000 + 1406659
4 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
5 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
6 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 7:
0 libsystem_kernel.dylib 0x00007fff910d6c86 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff911c096a _pthread_cond_wait + 712
2 libnode.dylib 0x00000001097fe219 uv_cond_wait + 9
3 libnode.dylib 0x00000001097f26c3 0x10969b000 + 1406659
4 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
5 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
6 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff910d6c86 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff911c096a _pthread_cond_wait + 712
2 libnode.dylib 0x00000001097fe219 uv_cond_wait + 9
3 libnode.dylib 0x00000001097f26c3 0x10969b000 + 1406659
4 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
5 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
6 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 9:
0 libsystem_kernel.dylib 0x00007fff910d6c86 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff911c096a _pthread_cond_wait + 712
2 libnode.dylib 0x00000001097fe219 uv_cond_wait + 9
3 libnode.dylib 0x00000001097f26c3 0x10969b000 + 1406659
4 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
5 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
6 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 10:: NetworkConfigWatcher
0 libsystem_kernel.dylib 0x00007fff910cf38a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff910ce7d7 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff7ba51c94 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff7ba51121 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fff7ba50974 CFRunLoopRunSpecific + 420
5 com.apple.Foundation 0x00007fff7d465612 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6 com.github.electron.framework 0x00000001055fcd3e 0x1053d4000 + 2264382
7 com.github.electron.framework 0x00000001055fc57c 0x1053d4000 + 2262396
8 com.github.electron.framework 0x00000001055f8abe 0x1053d4000 + 2247358
9 com.github.electron.framework 0x000000010560d613 0x1053d4000 + 2332179
10 com.github.electron.framework 0x0000000105625b22 0x1053d4000 + 2431778
11 com.github.electron.framework 0x00000001056036a7 0x1053d4000 + 2291367
12 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
13 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
14 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 11:: DnsConfigService
0 libsystem_kernel.dylib 0x00007fff910d7e2a kevent + 10
1 com.github.electron.framework 0x0000000105653a27 0x1053d4000 + 2619943
2 com.github.electron.framework 0x0000000105652c6d 0x1053d4000 + 2616429
3 com.github.electron.framework 0x00000001055fbc7f 0x1053d4000 + 2260095
4 com.github.electron.framework 0x00000001055f8abe 0x1053d4000 + 2247358
5 com.github.electron.framework 0x000000010560d613 0x1053d4000 + 2332179
6 com.github.electron.framework 0x0000000105625b22 0x1053d4000 + 2431778
7 com.github.electron.framework 0x00000001056036a7 0x1053d4000 + 2291367
8 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
9 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
10 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 12:: CrShutdownDetector
0 libsystem_kernel.dylib 0x00007fff910d82da read + 10
1 com.github.electron.framework 0x0000000105465f5f 0x1053d4000 + 597855
2 com.github.electron.framework 0x00000001056036a7 0x1053d4000 + 2291367
3 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
4 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
5 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 13:
0 libsystem_kernel.dylib 0x00007fff910d74e2 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff911bf791 _pthread_wqthread + 1426
2 libsystem_pthread.dylib 0x00007fff911bf1ed start_wqthread + 13
Thread 14:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff910cf38a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff910ce7d7 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff7ba51c94 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff7ba51121 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fff7ba50974 CFRunLoopRunSpecific + 420
5 com.apple.AppKit 0x00007fff796cfa62 _NSEventThread + 205
6 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 15:
0 libsystem_kernel.dylib 0x00007fff910cf38a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff910ce7d7 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff7ba51c94 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff7ba51121 __CFRunLoopRun + 1361
4 com.apple.CoreFoundation 0x00007fff7ba50974 CFRunLoopRunSpecific + 420
5 com.apple.CoreFoundation 0x00007fff7ba904f1 CFRunLoopRun + 97
6 libnode.dylib 0x0000000109801a86 0x10969b000 + 1469062
7 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
8 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
9 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 16:: WorkerPool/76819
0 libsystem_kernel.dylib 0x00007fff910d6c86 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff911c09a3 _pthread_cond_wait + 769
2 com.github.electron.framework 0x00000001055bd6eb 0x1053d4000 + 2004715
3 com.github.electron.framework 0x000000010564e7e9 0x1053d4000 + 2598889
4 com.github.electron.framework 0x000000010564ec47 0x1053d4000 + 2600007
5 com.github.electron.framework 0x00000001056036a7 0x1053d4000 + 2291367
6 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 17:: WorkerPool/72207
0 libsystem_kernel.dylib 0x00007fff910d6c86 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff911c09a3 _pthread_cond_wait + 769
2 com.github.electron.framework 0x00000001055bd6eb 0x1053d4000 + 2004715
3 com.github.electron.framework 0x000000010564e7e9 0x1053d4000 + 2598889
4 com.github.electron.framework 0x000000010564ec47 0x1053d4000 + 2600007
5 com.github.electron.framework 0x00000001056036a7 0x1053d4000 + 2291367
6 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 18:: WorkerPool/14087
0 libsystem_kernel.dylib 0x00007fff910d6c86 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff911c09a3 _pthread_cond_wait + 769
2 com.github.electron.framework 0x00000001055bd6eb 0x1053d4000 + 2004715
3 com.github.electron.framework 0x000000010564e7e9 0x1053d4000 + 2598889
4 com.github.electron.framework 0x000000010564ea1c 0x1053d4000 + 2599452
5 com.github.electron.framework 0x00000001056036a7 0x1053d4000 + 2291367
6 libsystem_pthread.dylib 0x00007fff911bfaab _pthread_body + 180
7 libsystem_pthread.dylib 0x00007fff911bf9f7 _pthread_start + 286
8 libsystem_pthread.dylib 0x00007fff911bf1fd thread_start + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x00007fff5a829758 rdx: 0x0000000000000000
rdi: 0x0000000000000307 rsi: 0x0000000000000006 rbp: 0x00007fff5a829780 rsp: 0x00007fff5a829758
r8: 0x0000000000000000 r9: 0x0000000000989680 r10: 0x0000000008000000 r11: 0x0000000000000206
r12: 0x00007fff5a829a40 r13: 0x00007f8ec1039c00 r14: 0x00007fff99df53c0 r15: 0x000000010a2a92c8
rip: 0x00007fff910d6dd6 rfl: 0x0000000000000206 cr2: 0x000000010d684000
Logical CPU: 0
Error Code: 0x02000148
Trap Number: 133
Binary Images:
0x1053cd000 - 0x1053cdff7 +com.visualstudio.code.oss (1.11.0 - 1.11.0) <4B6548C2-7242-34D3-8E38-22489EC31FB9> /Users/USER/*/Code - OSS.app/Contents/MacOS/Electron
0x1053d4000 - 0x108e70f17 +com.github.electron.framework (0) <8E3BB59A-81E0-3488-865E-F7EA8016B7E7> /Users/USER/*/Code - OSS.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework
0x10955b000 - 0x109575fff +com.github.Squirrel (1.0 - 1) <4C459C36-AFB6-3B8A-8FEC-76C192C17E30> /Users/USER/*/Code - OSS.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x109596000 - 0x1095f9ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Users/USER/*/Code - OSS.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x10966e000 - 0x109682fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Users/USER/*/Code - OSS.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x10969b000 - 0x10a527fff +libnode.dylib (0) <6AAE470C-446D-3CCD-BB7B-57721AE9ADF4> /Users/USER/*/Code - OSS.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libnode.dylib
0x10a79f000 - 0x10a8d2fff +libffmpeg.dylib (0) <80AEF1E8-09FF-3F4A-A9BD-5257342773FE> /Users/USER/*/Code - OSS.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib
0x10aa86000 - 0x10aac4ff7 com.apple.audio.midi.CoreMIDI (1.10 - 88) <05B584BA-1FEA-3D34-8ABB-7C8C37952CB0> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x10aaf1000 - 0x10ab0affb libexpat.1.dylib (15) <617B8B7A-A0AB-37D6-AFCA-F90F7F14E455> /usr/lib/libexpat.1.dylib
0x112800000 - 0x112d4eff7 com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.22.29 - 10.2.2) <7FC0294C-B7AA-3247-9728-227622A83AEF> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
0x112f64000 - 0x112fdbfff com.apple.driver.AppleIntelHD5000GraphicsMTLDriver (10.22.29 - 10.2.2) <320C9191-9ACF-3128-A131-B93E4EBFE265> /System/Library/Extensions/AppleIntelHD5000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsMTLDriver
0x1152d3000 - 0x115310267 dyld (421.2) <947FC440-80F9-32F7-A773-6FC418FE1AB7> /usr/lib/dyld
0x7fff78231000 - 0x7fff783f0ffb com.apple.avfoundation (2.0 - 1187.11.13) <0D0BB4A4-F987-381B-885E-88A81F50FD50> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff783f1000 - 0x7fff78494fff com.apple.audio.AVFAudio (1.0 - ???) <E3CDC215-9272-3F94-8093-865CA181F728> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff7855d000 - 0x7fff7855dfff com.apple.Accelerate (1.11 - Accelerate 1.11) <D700DBDF-69AE-37A2-B9C7-0961CF0B6841> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff7855e000 - 0x7fff78575ffb libCGInterfaces.dylib (331.5) <518D3064-6E1E-3DF6-881B-57867DFE9B1E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff78576000 - 0x7fff78a8ffeb com.apple.vImage (8.1 - ???) <6408805B-67E9-3874-8D32-0BB814CE5CDA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff78a90000 - 0x7fff78c00ff3 libBLAS.dylib (1185) <C7E42BBE-2337-3AEF-9C45-A2F2CB1A5B3E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff78c01000 - 0x7fff78c15ffb libBNNS.dylib (14) <CFDEE88D-E002-347C-BC68-83099651585B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff78c16000 - 0x7fff7900cfef libLAPACK.dylib (1185) <2E8201CB-9A41-3D65-853E-841917FCE77B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff7900d000 - 0x7fff79023fff libLinearAlgebra.dylib (1185) <8CC29DE1-A231-3D5E-B5F1-DCC309036FE0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff79024000 - 0x7fff7902afff libQuadrature.dylib (3) <120F6228-A3D4-3184-89D7-785ADC2AC715> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff7902b000 - 0x7fff7903fff7 libSparseBLAS.dylib (1185) <C35235B7-CFA6-39A7-BD6E-79F4D9CAFD36> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff79040000 - 0x7fff791c7fe7 libvDSP.dylib (600) <F59348AA-E1D3-3A27-8AB5-F546D38BFB76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff791c8000 - 0x7fff7927affb libvMisc.dylib (600) <70D4B548-47EE-3C6B-A93B-3EA6B60701E0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff7927b000 - 0x7fff7927bfff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <A395B521-8E54-30F2-B4FE-355D68900DAF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff7953b000 - 0x7fff7a30dff3 com.apple.AppKit (6.9 - 1504.81.100) <0CCB2E18-076E-3D8A-A777-A6E57EF2570A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff7a31f000 - 0x7fff7a31ffff com.apple.ApplicationServices (48 - 48) <237200C2-28A6-3C19-B34B-53C953F8AE42> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff7a320000 - 0x7fff7a38eff7 com.apple.ApplicationServices.ATS (377 - 422.2) <3680281F-DB99-3CA2-9C76-CABFC8DBC980> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff7a428000 - 0x7fff7a557fff libFontParser.dylib (194.6) <F3DF2CF7-B25D-30BB-9EE6-1EA9F3B8A066> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff7a558000 - 0x7fff7a5a2fff libFontRegistry.dylib (196.3) <855AF921-EAE0-3D07-B161-5EF09806B643> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff7a5ff000 - 0x7fff7a632ff7 libTrueTypeScaler.dylib (194.6) <D0D7DA50-DF52-3D24-AFD2-03B336AA1929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff7a69e000 - 0x7fff7a748ff7 com.apple.ColorSync (4.12.0 - 502.1) <5F244DE3-A6E8-335F-AE3B-25F0E407DD62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff7a749000 - 0x7fff7a799ff7 com.apple.HIServices (1.22 - 591) <34C950CC-1084-354A-BCE6-9396EDB29DF8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff7a79a000 - 0x7fff7a7a9ff3 com.apple.LangAnalysis (1.7.0 - 1.7.0) <47D1A017-91A4-37F3-93E0-3923CD6ED2DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff7a7aa000 - 0x7fff7a7f7fff com.apple.print.framework.PrintCore (12 - 491) <B7CC15C1-AF50-37F3-8AF6-65F8CDC323F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff7a7f8000 - 0x7fff7a833fff com.apple.QD (3.12 - 310) <8F718290-DD82-36CE-9AF0-EFB6D31A49F4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff7a834000 - 0x7fff7a83fff7 com.apple.speech.synthesis.framework (6.3.3 - 6.3.3) <629831B1-B13C-30F5-AE16-6BB9037E3753> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff7a840000 - 0x7fff7aa50fff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <A1B98513-C19E-376F-8DAF-71BB2F263C5F> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff7aa51000 - 0x7fff7aa51fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <55C6A958-D52B-3D81-B230-EB949212B5D9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff7abba000 - 0x7fff7af8dff7 com.apple.CFNetwork (807.2.14 - 807.2.14) <9702C8B9-2984-3DD9-9C59-A83499C2DBC4> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff7afa7000 - 0x7fff7afa7fff com.apple.Carbon (154 - 157) <1BF9C0EB-45A0-3584-85DC-F64A9914F40D> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff7afa8000 - 0x7fff7afabfff com.apple.CommonPanels (1.2.6 - 98) <6A71E8CB-3BF7-3A49-A5F7-0579BAE1219D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff7afac000 - 0x7fff7b2b4ff7 com.apple.HIToolbox (2.1.1 - 856.13) <98D5D2A7-55A6-31A7-9056-CC48EBB16654> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff7b2b5000 - 0x7fff7b2b8ff7 com.apple.help (1.3.5 - 49) <27C5F9FE-838F-3807-A4AC-D99470185B10> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff7b2b9000 - 0x7fff7b2befff com.apple.ImageCapture (9.0 - 9.0) <E3E757FD-4060-33A4-A2AC-85EFBD987FCE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff7b2bf000 - 0x7fff7b356ff3 com.apple.ink.framework (10.9 - 219) <B44BA36D-7549-3EB2-8CF6-E171885194FB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff7b357000 - 0x7fff7b371fff com.apple.openscripting (1.7 - 172) <B204BF70-C4AA-3699-8493-66E6645A92A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff7b372000 - 0x7fff7b373ff3 com.apple.print.framework.Print (12 - 267) <CA7E9448-0903-34C8-AAF6-9070B52BF70E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff7b374000 - 0x7fff7b376ff7 com.apple.securityhi (9.0 - 55006) <ACD20DC1-FBDE-3E1B-91BF-867FE7849CBC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff7b377000 - 0x7fff7b37dff7 com.apple.speech.recognition.framework (6.0.1 - 6.0.1) <A20B0F7B-C32A-3FF1-BB75-BAC0EE4EF889> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff7b45c000 - 0x7fff7b45cfff com.apple.Cocoa (6.11 - 22) <CF1AD0E9-2257-35FE-B719-760B58E405C9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff7b59c000 - 0x7fff7b62cff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <A38A11A5-130B-39CE-BEBA-F5427F6801DC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff7b62d000 - 0x7fff7b640fff com.apple.CoreBluetooth (1.0 - 1) <76AFC4B4-A9FD-3434-B168-90087E71F5C4> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff7b641000 - 0x7fff7b93bfeb com.apple.CoreData (120 - 752.8) <FE3F152B-4C35-3A58-A0CB-D04EE5908818> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff7b93c000 - 0x7fff7b9c8fff com.apple.CoreDisplay (1.0 - 1) <48B568C0-1E12-34F4-943D-EAB447FBA1BE> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff7b9c9000 - 0x7fff7be63fff com.apple.CoreFoundation (6.9 - 1348.28) <A40AA224-7A50-3989-95D0-5A228A0E2FAF> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff7be64000 - 0x7fff7c4e6fff com.apple.CoreGraphics (2.0 - 1070.13.2) <0685658F-21AE-31D9-8C9A-B92528CDFB59> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff7c4e7000 - 0x7fff7c729fff com.apple.CoreImage (12.2.0 - 451.3.1) <CDAD60F3-74F6-3EA5-A8B5-B42476E350FD> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff7c791000 - 0x7fff7c841fff com.apple.CoreMedia (1.0 - 1907.15.15) <B5B8C128-C1C2-3585-9B43-41141B2C6332> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff7c842000 - 0x7fff7c88dff7 com.apple.CoreMediaIO (804.0 - 4929) <54CF2AD2-4928-3A41-9F7D-F135A8A616D1> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff7c88e000 - 0x7fff7c88efff com.apple.CoreServices (775.9.7 - 775.9.7) <A5C444F3-408B-3062-AF4B-BF8CD919F221> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff7c88f000 - 0x7fff7c8e0fff com.apple.AE (712.2 - 712.2) <342A13C0-4A6A-3947-B66B-0F624A4A7B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff7c8e1000 - 0x7fff7cbbcff7 com.apple.CoreServices.CarbonCore (1159.5 - 1159.5) <11CC2194-0C9C-397A-B7F9-CDAB9B68D87D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff7cbbd000 - 0x7fff7cbf0fff com.apple.DictionaryServices (1.2 - 274) <864F3808-FFDD-3C4B-A5B7-F1A6C4668A86> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff7cbf1000 - 0x7fff7cbf9ffb com.apple.CoreServices.FSEvents (1230 - 1230) <13A2FC17-8F8C-35BF-9584-59FDFB738E2B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff7cbfa000 - 0x7fff7cd66ff7 com.apple.LaunchServices (775.9.7 - 775.9.7) <E350E4F6-822A-3F04-B59B-468A39AF5C64> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff7cd67000 - 0x7fff7ce17fff com.apple.Metadata (10.7.0 - 1075.28) <DBB524CD-6938-3623-99C2-4B1EC1E1BE58> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff7ce18000 - 0x7fff7ce77fff com.apple.CoreServices.OSServices (775.9.7 - 775.9.7) <E9625B0B-9AE7-3024-9FEF-FEE0A1876D9D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff7ce78000 - 0x7fff7cee8fff com.apple.SearchKit (1.4.0 - 1.4.0) <F1B3EF8D-E820-317C-AC7F-8F056C246874> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff7cee9000 - 0x7fff7cf2fff7 com.apple.coreservices.SharedFileList (38 - 38) <E1400999-1F08-35A1-9D07-27D80A2AF89A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff7cfbc000 - 0x7fff7d108ff7 com.apple.CoreText (352.0 - 544.5) <E90EA1D8-3491-3014-9043-9928C4E4349C> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff7d109000 - 0x7fff7d13efff com.apple.CoreVideo (1.8 - 234.0) <48C31E93-87C2-31F4-97E7-9E54C1EA8E7D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff7d13f000 - 0x7fff7d1b0ffb com.apple.framework.CoreWLAN (11.0 - 1200.25.1) <BEBE9C03-3B9A-3948-99E3-CC8148FA2AB5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff7d2af000 - 0x7fff7d2b4fff com.apple.DiskArbitration (2.7 - 2.7) <16EA6D93-A2EC-31DB-BF52-C4764E7B1630> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff7d443000 - 0x7fff7d7eaff3 com.apple.Foundation (6.9 - 1349.25) <D820A498-2E62-367D-BC72-5845B14C06E3> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff7d816000 - 0x7fff7d847fff com.apple.GSS (4.0 - 2.0) <95FAD1F9-1610-3428-B9B4-D32F67C26574> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff7d848000 - 0x7fff7d860ff7 com.apple.GameController (1.0 - 1) <640BC2B1-5131-3CB0-9C71-1232D9015E34> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
0x7fff7d907000 - 0x7fff7d9aaffb com.apple.Bluetooth (5.0.3 - 5.0.3f1) <CCB4E097-1ED0-3439-8450-2B6EFFBC4608> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff7d9ab000 - 0x7fff7da40ff7 com.apple.framework.IOKit (2.0.2 - 1324.30.13) <163BE7FA-B29A-348F-8B5F-E301F2E8C964> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff7da41000 - 0x7fff7da47ffb com.apple.IOSurface (153.3 - 153.3) <3DD3BF22-0800-31F2-B179-87F87D6F0548> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff7da48000 - 0x7fff7da98ff3 com.apple.ImageCaptureCore (7.0 - 7.0) <0F899C07-AA23-350E-8670-9090924D670D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff7da99000 - 0x7fff7dbf2fef com.apple.ImageIO.framework (3.3.0 - 1582) <564168E7-BEC0-35E3-9BF0-59B65C17225E> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff7dbf3000 - 0x7fff7dbf7fff libGIF.dylib (1582) <040243CD-3A68-3ADC-805C-FE1D17C80028> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff7dbf8000 - 0x7fff7dce8ff7 libJP2.dylib (1582) <A55870F9-F27F-3BD0-BE89-981BFF63D485> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff7dce9000 - 0x7fff7dd0cffb libJPEG.dylib (1582) <58C01E72-10A0-313F-8139-ED6E9D087ABB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff7dd0d000 - 0x7fff7dd34ff7 libPng.dylib (1582) <F2CC3750-3520-311B-9C66-9D86036375B7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff7dd35000 - 0x7fff7dd37ff3 libRadiance.dylib (1582) <C3E9CE5C-1A25-391B-9ACB-556AA065B985> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff7dd38000 - 0x7fff7dd91ff3 libTIFF.dylib (1582) <71ADCD24-67C9-31B5-8E48-A4B89AFBB19F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff7debd000 - 0x7fff7e960ff7 com.apple.JavaScriptCore (12602 - 12602.4.8) <4FF12BFD-CD3B-33D7-B844-85234A13BD42> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff7e961000 - 0x7fff7e97aff7 com.apple.Kerberos (3.0 - 1) <49DCBE1A-130C-3FBF-AAEA-AF9A518913AC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff7ec07000 - 0x7fff7ec0dfff com.apple.MediaAccessibility (1.0 - 97.1.1) <1025DB59-18DE-39EA-9C04-35CE8D6103E5> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff7ec23000 - 0x7fff7f177fff com.apple.MediaToolbox (1.0 - 1907.15.15) <22150DE7-8CD3-30DD-8C0F-3D06F865C186> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff7f178000 - 0x7fff7f1d0fff com.apple.Metal (86.18 - 86.18) <7DFE0437-25A8-3E87-8318-91573C895742> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff7faa4000 - 0x7fff7faacfff com.apple.NetFS (6.0 - 4.0) <6614F9B8-0861-338B-8FF0-8E402F96141C> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff7fc81000 - 0x7fff7fc89ff7 libcldcpuengine.dylib (2.8.5) <341EBC48-CCF4-3292-9097-F61715AC573E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff7fe52000 - 0x7fff7fea0ff3 com.apple.opencl (2.8.6 - 2.8.6) <553BFCCA-5ACB-3DB0-B958-4BF2DE91838F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff7fea1000 - 0x7fff7febaffb com.apple.CFOpenDirectory (10.12 - 194) <88E97774-6767-3A01-808B-C923F9310E20> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff7febb000 - 0x7fff7fec6ff7 com.apple.OpenDirectory (10.12 - 194) <0E4E32DD-6592-3860-9793-BAED6915AE0D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff7fec7000 - 0x7fff7fec9fff libCVMSPluginSupport.dylib (13.0.10) <43D037C3-9254-3601-9F5B-CD637D517758> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff7feca000 - 0x7fff7fecdff7 libCoreFSCache.dylib (151.1) <1910EF80-DE30-3817-8FDF-63F3C8B4BA37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff7fece000 - 0x7fff7fed1fff libCoreVMClient.dylib (151.1) <8C8E9295-1918-3763-A0B7-6397EB181EF4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff7fed2000 - 0x7fff7fedaffb libGFXShared.dylib (13.0.10) <52E92D3C-25EA-31F9-9885-DC0D886D9143> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff7fedb000 - 0x7fff7fee6fff libGL.dylib (13.0.10) <B40728B5-13D2-3423-9C39-885B1098698D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff7fee7000 - 0x7fff7ff23fe7 libGLImage.dylib (13.0.10) <3E856113-9217-3B13-98AD-4D0D356931B6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff7ff24000 - 0x7fff8009affb libGLProgrammability.dylib (13.0.10) <4C3FD24A-1C43-343E-8EBA-BE1FDCE3F74C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff8009b000 - 0x7fff800dbff3 libGLU.dylib (13.0.10) <BBCAA457-BA34-3D13-8845-803C63960E08> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff80a43000 - 0x7fff80a51fff com.apple.opengl (13.0.10 - 13.0.10) <B11A2E1B-4B1D-3ECD-BADA-3508BE5775BF> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff80a52000 - 0x7fff80bf8fff GLEngine (13.0.10) <62CCEC13-1EB3-3A65-9224-3DCD2838E0C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
0x7fff80bf9000 - 0x7fff80c23ffb GLRendererFloat (13.0.10) <E508ABC7-3E67-3845-989F-5B764D36FE12> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fff80cbc000 - 0x7fff80e03fff com.apple.QTKit (7.7.3 - 2978.3) <665AF577-900D-349E-B1C5-D5BDD70DB481> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff80e04000 - 0x7fff8106eff7 com.apple.imageKit (3.0 - 1021) <5D77D4A4-F844-376B-93AA-F9CB55C719AE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff8106f000 - 0x7fff81133fff com.apple.PDFKit (1.0 - 1) <7375423F-5815-36C5-A345-546843827588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff81134000 - 0x7fff8165afff com.apple.QuartzComposer (5.1 - 351.1) <A13FD5C2-36D1-3B92-88E6-AB4CAF733907> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff8165b000 - 0x7fff8167effb com.apple.quartzfilters (1.10.0 - 1.10.0) <8A8ED06E-3A07-312A-A976-982C51159A45> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff8167f000 - 0x7fff8176cfff com.apple.QuickLookUIFramework (5.0 - 720.5) <85A0BF0F-94B1-33CD-A3DC-4048380A3258> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff8176d000 - 0x7fff8176dfff com.apple.quartzframework (1.5 - 21) <DA6924FE-3D6C-3CCE-9CB6-188B6B1671DD> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff8176e000 - 0x7fff81969ff7 com.apple.QuartzCore (1.11 - 449.41.15) <3CD775C0-683D-3B4E-8EC2-AB1DAC4C3AE9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff8196a000 - 0x7fff819bffff com.apple.QuickLookFramework (5.0 - 720.5) <9E76504A-B17B-3302-82DF-9CE1CB31CAC3> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff819c0000 - 0x7fff819d3ff7 com.apple.SafariServices.framework (12602 - 12602.4.8) <D88756B5-91A1-3EE8-B69D-F9CE206DBB14> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff81ecf000 - 0x7fff821eefff com.apple.security (7.0 - 57740.31.2) <A47D7BAE-0591-3184-8E44-FB2EB08A19C2> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff821ef000 - 0x7fff82265ff7 com.apple.securityfoundation (6.0 - 55132.20.1) <9407620B-B230-3320-B0B7-5AE59F1D135C> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8228f000 - 0x7fff82292ff3 com.apple.xpc.ServiceManagement (1.0 - 1) <4E24C12E-6164-3A7A-8EB8-C2523492BAE8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff82619000 - 0x7fff8268aff7 com.apple.SystemConfiguration (1.14 - 1.14) <D9A57D90-E54F-3E1A-AA2F-F5A694BCE4BB> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8268b000 - 0x7fff82a38fff com.apple.VideoToolbox (1.0 - 1907.15.15) <685B6CCD-3027-3D0F-8B31-2388A3CE1BDC> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff84cc4000 - 0x7fff84cdfff3 com.apple.AppContainer (4.0 - 307.30.3) <EF4C3C83-6F51-38F7-A3D2-2D46EE4560EB> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff84ce0000 - 0x7fff84cedff3 com.apple.AppSandbox (4.0 - 307.30.3) <D2C978EB-F4F1-3E79-9DB1-BEE2A92590CE> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff84cee000 - 0x7fff84d10ffb com.apple.framework.Apple80211 (12.0 - 1200.41) <360012DB-DAE7-3EEF-85F0-E5BE1DE3425D> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff84d11000 - 0x7fff84d20fdb com.apple.AppleFSCompression (88 - 1.0) <B6E2148F-BFBF-3F1B-A7DF-0F39190B4C20> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff84e0f000 - 0x7fff84e9a97f com.apple.AppleJPEG (1.0 - 1) <B4C3209B-58A5-359F-A898-F61B6C40E5E9> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff84ed3000 - 0x7fff84ed6ff3 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <6FF50E26-5BDA-3421-BDAE-B57AE6E4F6AC> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff84ed7000 - 0x7fff84f29fff com.apple.AppleVAFramework (5.0.34 - 5.0.34) <2AA15DE0-9A7E-3CC0-988A-3BB080A8F603> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff852bf000 - 0x7fff8533dfff com.apple.backup.framework (1.8.3 - 1.8.3) <B2E28A7A-1727-3052-AA73-CBC108286C07> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff85fc3000 - 0x7fff85feaffb com.apple.ChunkingLibrary (172 - 172) <83E91936-305D-32A4-A256-5582B96B1852> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff86913000 - 0x7fff8691cffb com.apple.CommonAuth (4.0 - 2.0) <830B940B-3523-38DE-996D-695739616D10> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff86aa0000 - 0x7fff86e7dfe7 com.apple.CoreAUC (224.0.0 - 224.0.0) <8DF6075A-0711-33A9-9031-6FDA22E85C4F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff86e7e000 - 0x7fff86eaefff com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <5E1B0512-E50B-3534-99EF-AD15E601877A> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff8703c000 - 0x7fff8704cfff com.apple.CoreEmoji (1.0 - 39.1) <0A46D6BF-22F3-39AD-B3DC-DE1EE5C442CC> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff87101000 - 0x7fff87117ff3 com.apple.CoreMediaAuthoring (2.2 - 955) <3E1E33F1-B4FF-320E-B336-7E7F74D73642> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff8711e000 - 0x7fff871aeffb com.apple.CorePDF (4.0 - 4) <254118BE-2E30-3772-B425-6328D1487162> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff8732f000 - 0x7fff8735fff3 com.apple.CoreServicesInternal (276.2 - 276.2) <7D8DEF04-72F1-39F4-BBFB-09E65D7B8C10> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff875ef000 - 0x7fff87679fff com.apple.CoreSymbolication (61050) <F4B7C798-F7B7-3977-AA08-59A03F00308E> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff8767a000 - 0x7fff877b8fd7 com.apple.coreui (2.1 - 430.6) <99D08D71-3E9D-300C-9EB2-A73F1B5E228C> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff877b9000 - 0x7fff87869ff3 com.apple.CoreUtils (5.0 - 500.9) <5567181B-721C-339E-A3DC-579E36D92341> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff878b9000 - 0x7fff8791eff3 com.apple.framework.CoreWiFi (12.0 - 1200.25.1) <BEFA276C-D284-3160-8641-7DD47E38C9D7> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff8791f000 - 0x7fff8792cff7 com.apple.CrashReporterSupport (10.12 - 817) <CB5251B1-5BE5-308B-B30B-0050065E04CC> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff8799e000 - 0x7fff879a8ff7 com.apple.framework.DFRFoundation (1.0 - 104.14) <258B6CFE-FD64-31C5-9973-2FD80597ECDA> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff879de000 - 0x7fff87a55ff7 com.apple.datadetectorscore (7.0 - 539.1) <E9892E38-3D5F-36CF-BDC5-E4E3C5516B55> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff87a92000 - 0x7fff87ad1fff com.apple.DebugSymbols (137 - 137) <B229F3F7-250B-3151-8048-CEA7BF80FA52> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff87ad2000 - 0x7fff87be3fff com.apple.desktopservices (1.11.3 - 1.11.3) <CCE689AA-85F3-3587-AE12-1231E8ED127E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff87d23000 - 0x7fff87d2dff7 com.apple.DisplayServicesFW (3.1 - 380) <A1B8B6C2-5782-3D5C-B54E-48E96BB807DA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff87ec7000 - 0x7fff882f8ff7 com.apple.vision.FaceCore (3.3.2 - 3.3.2) <DEB42099-6927-332C-8D3E-D45096318D25> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff8964d000 - 0x7fff8964dfff libmetal_timestamp.dylib (600.0.48.32) <31DF1B9E-0BBF-308B-B78D-11CCE72DAA68> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x7fff8965a000 - 0x7fff89665ff3 libGPUSupportMercury.dylib (13.0.10) <7CC5CEF8-D132-3234-A078-6D080DFC599F> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x7fff89919000 - 0x7fff89935ff3 com.apple.GenerationalStorage (2.0 - 259.2) <00BF8427-967F-3693-A86F-DA0F29B49BF3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff8a033000 - 0x7fff8a0a9fff com.apple.Heimdal (4.0 - 2.0) <00F00E7E-7EF4-3254-86D3-ADA4F67938CF> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8a6cc000 - 0x7fff8a6d3ffb com.apple.IOAccelerator (289.32 - 289.32) <6395ACEE-5AD7-3536-AF12-FD6565415D94> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff8a6d5000 - 0x7fff8a6e9ff3 com.apple.IOPresentment (1.0 - 25) <40934217-996A-3DDB-A8C4-484CA0F0222B> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff8a6ea000 - 0x7fff8a70cfff com.apple.IconServices (74.3 - 74.3) <3F0BD358-D019-3083-82F2-69CCAD5E5D66> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff8a7a8000 - 0x7fff8a7b8ff3 com.apple.IntlPreferences (2.0 - 216) <589A5D92-6809-3F3C-900E-DBC60A07A101> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff8a7ef000 - 0x7fff8a9a5fff com.apple.LanguageModeling (1.0 - 123.2.4) <FEB98F96-A9BB-3E6C-85B4-B466825B8C92> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff8afff000 - 0x7fff8b002fff com.apple.Mangrove (1.0 - 1) <05039E9F-9C07-375B-A940-D90D455A2EC2> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff8b269000 - 0x7fff8b2e2ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <6A759DBA-B7DF-363B-9827-AB1D1129BB34> /System/Library/PrivateFrameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff8b448000 - 0x7fff8b453ff3 com.apple.MobileKeyBag (2.0 - 1.0) <8A7EEA75-8334-3FB5-A83B-F0ECB87952B2> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff8b464000 - 0x7fff8b48cfff com.apple.MultitouchSupport.framework (368.7 - 368.7) <A29E6031-E9A6-353A-BDE5-D8DF20FD393C> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff8b53b000 - 0x7fff8b545fff com.apple.NetAuth (6.0 - 6.0) <1E7765FC-4580-3CE4-A0F1-CAA22006AE43> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff8bdc1000 - 0x7fff8be02ff7 com.apple.PerformanceAnalysis (1.145 - 145) <12640C1F-433D-3CD9-B2A8-048D57B8B56D> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff8c4a5000 - 0x7fff8c4bffff com.apple.ProtocolBuffer (1 - 249) <D8B7694B-B598-3728-8583-9C4CC0F05B64> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff8c4c0000 - 0x7fff8c4d0ffb com.apple.QuickLookThumbnailing (1.0 - 1) <1A91596D-0A8D-3B7A-ACF5-783A78E9723E> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fff8c4d9000 - 0x7fff8c4fcff3 com.apple.RemoteViewServices (2.0 - 124) <4765DC2E-CF05-38CF-9564-1FBACB7E167C> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff8d168000 - 0x7fff8d16bfff com.apple.SecCodeWrapper (4.0 - 307.30.3) <1B0B2122-C230-3E3F-8A81-EBD58818586B> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff8d1fa000 - 0x7fff8d277ff7 com.apple.Sharing (696.1.22 - 696.1.22) <D0A5C682-8996-3851-B332-AD05301E6FA3> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff8d298000 - 0x7fff8d4f7fe7 com.apple.SkyLight (1.600.0 - 122.8) <2B8B6734-2B70-3BD8-BB8E-3338FB2708EE> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff8d6d8000 - 0x7fff8d6e4ff7 com.apple.SpeechRecognitionCore (3.3.2 - 3.3.2) <F9F0FCED-3A72-3639-91F2-B7EF248ED1B9> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff8ddcd000 - 0x7fff8de39ff3 com.apple.Symbolication (61080.2) <27A57DC2-FEB7-3D23-AEB5-E3E76C5AAE79> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff8e233000 - 0x7fff8e239ff7 com.apple.TCC (1.0 - 1) <956F7C1A-D457-3FE0-9CFE-3F1719F0865C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff8e2c8000 - 0x7fff8e490ff7 com.apple.TextureIO (1.41 - 1.41) <3A9D9FD9-8997-3BD1-8046-76D0BF709806> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff8e504000 - 0x7fff8e505fff com.apple.TrustEvaluationAgent (2.0 - 28) <07C1F711-A1E0-3BAC-8F4D-977516D50925> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8e506000 - 0x7fff8e696ff3 com.apple.UIFoundation (1.0 - 490.7) <047781ED-9E79-361F-8E04-71FF90C650F3> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff8f0f2000 - 0x7fff8f1b5ff7 com.apple.ViewBridge (280 - 280) <6D4F6019-5ECC-377B-AF7D-9796E96841CB> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff8f5df000 - 0x7fff8f5e5fff com.apple.XPCService (2.0 - 1) <BC3FCE26-6219-3316-949F-37F7005C9A0F> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff8f6b6000 - 0x7fff8f6b8ffb com.apple.loginsupport (1.0 - 1) <4449ACBA-27A8-3311-BD92-CB7E63583FC6> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff8f70d000 - 0x7fff8f728ff7 libCRFSuite.dylib (34) <BACC371B-6153-36B5-BC54-3BCF26FBB221> /usr/lib/libCRFSuite.dylib
0x7fff8f729000 - 0x7fff8f734fff libChineseTokenizer.dylib (21) <09E74E18-ADB2-30D2-A858-13691CB1186C> /usr/lib/libChineseTokenizer.dylib
0x7fff8f7c6000 - 0x7fff8f7c7ff3 libDiagnosticMessagesClient.dylib (102) <422911A4-E273-3E88-BFC4-DF6470E48242> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff8f7c8000 - 0x7fff8f9dbfff libFosl_dynamic.dylib (16.38) <8232FA8A-F16A-3DC0-AE68-B61EFCD5F4A4> /usr/lib/libFosl_dynamic.dylib
0x7fff8f9f7000 - 0x7fff8f9fefff libMatch.1.dylib (27) <5D52A207-E2AF-3E05-8C51-91C1D82FCEE8> /usr/lib/libMatch.1.dylib
0x7fff8f9ff000 - 0x7fff8f9fffff libOpenScriptingUtil.dylib (172) <D025E180-BB3B-3FFA-98FC-B6835354D723> /usr/lib/libOpenScriptingUtil.dylib
0x7fff8fa00000 - 0x7fff8fa04ff3 libScreenReader.dylib (477.20.6) <8158E263-B7DF-3B0C-BABE-4FE94A53DFE5> /usr/lib/libScreenReader.dylib
0x7fff8fa05000 - 0x7fff8fa06ff3 libSystem.B.dylib (1238) <9CB018AF-54E9-300F-82BE-81FE553C9154> /usr/lib/libSystem.B.dylib
0x7fff8fa72000 - 0x7fff8fa9dffb libarchive.2.dylib (41.41.1) <D53F0A5C-7FAA-3FCF-8A27-B7DF032C4221> /usr/lib/libarchive.2.dylib
0x7fff8fa9e000 - 0x7fff8fb1afc7 libate.dylib (1.12.13) <8A963F37-CB4F-37FB-BFA5-273917C42437> /usr/lib/libate.dylib
0x7fff8fb1e000 - 0x7fff8fb1eff3 libauto.dylib (187) <5BBF6A00-CC76-389D-84E7-CA88EDADE683> /usr/lib/libauto.dylib
0x7fff8fb1f000 - 0x7fff8fb2fff3 libbsm.0.dylib (34) <20084796-B04D-3B35-A003-EA11459557A9> /usr/lib/libbsm.0.dylib
0x7fff8fb30000 - 0x7fff8fb3eff7 libbz2.1.0.dylib (38) <6FD3B63F-0F86-3A25-BD5B-E243F58792C9> /usr/lib/libbz2.1.0.dylib
0x7fff8fb3f000 - 0x7fff8fb95ff7 libc++.1.dylib (307.4) <BEE86868-F831-384C-919E-2B286ACFE87C> /usr/lib/libc++.1.dylib
0x7fff8fb96000 - 0x7fff8fbc0fff libc++abi.dylib (307.2) <1CEF8ABB-7E6D-3C2F-8E0A-E7884478DD23> /usr/lib/libc++abi.dylib
0x7fff8fbc1000 - 0x7fff8fbd1ffb libcmph.dylib (6) <2B5D405E-2D0B-3320-ABD6-622934C86ABE> /usr/lib/libcmph.dylib
0x7fff8fbd2000 - 0x7fff8fbe7fc3 libcompression.dylib (34) <1691D6F2-46CD-3DA6-B44F-24CDD9BD0E4E> /usr/lib/libcompression.dylib
0x7fff8fbe8000 - 0x7fff8fbe8ff7 libcoretls.dylib (121.31.1) <BCC32537-4831-3E9F-876E-8C9F4CF52FD3> /usr/lib/libcoretls.dylib
0x7fff8fbe9000 - 0x7fff8fbeaff3 libcoretls_cfhelpers.dylib (121.31.1) <6F37C5AD-7999-3D31-A52F-7AEED935F32D> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff8fca4000 - 0x7fff8fd89ff7 libcrypto.0.9.8.dylib (64.30.2) <D41E1901-06DD-3860-BB4F-B3ACE0284C01> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8ff27000 - 0x7fff8ff7aff7 libcups.2.dylib (450) <78243BA4-43AB-3364-8111-8D54D3382621> /usr/lib/libcups.2.dylib
0x7fff8ffcc000 - 0x7fff8ffd3ff3 libdscsym.dylib (145.1) <E121E3BC-D2B7-37C3-86A8-5DFC3ECF94D6> /usr/lib/libdscsym.dylib
0x7fff8fff5000 - 0x7fff8fff5fff libenergytrace.dylib (15) <A1B040A2-7977-3097-9ADF-34FF181EB970> /usr/lib/libenergytrace.dylib
0x7fff90005000 - 0x7fff9000aff7 libheimdal-asn1.dylib (498.30.1) <4ED9F6E3-83BC-3302-B004-C25399DA0333> /usr/lib/libheimdal-asn1.dylib
0x7fff9000b000 - 0x7fff900fdff7 libiconv.2.dylib (50) <42125B35-81D7-3FC4-9475-A26DBE10884D> /usr/lib/libiconv.2.dylib
0x7fff900fe000 - 0x7fff90323ffb libicucore.A.dylib (57149.0.1) <6B5FDA93-AA88-318F-9608-C2A33D602EC7> /usr/lib/libicucore.A.dylib
0x7fff90329000 - 0x7fff9032afff liblangid.dylib (126) <3F4530C9-8BE1-3AA7-9A82-98694D240866> /usr/lib/liblangid.dylib
0x7fff9032b000 - 0x7fff90344ffb liblzma.5.dylib (10) <44BD0279-99DD-36B5-8A6E-C11432E2098D> /usr/lib/liblzma.5.dylib
0x7fff90345000 - 0x7fff9035bff7 libmarisa.dylib (5) <2183D484-032D-3DE5-8984-3A14006E034E> /usr/lib/libmarisa.dylib
0x7fff9035c000 - 0x7fff90603ff7 libmecabra.dylib (744.5) <EF046855-CB9C-32D8-B2F1-C85B526E386F> /usr/lib/libmecabra.dylib
0x7fff90636000 - 0x7fff906afff7 libnetwork.dylib (856.30.16) <66C6E4D6-B39C-3309-80C1-CBBE170DDD51> /usr/lib/libnetwork.dylib
0x7fff906b0000 - 0x7fff90a80d97 libobjc.A.dylib (706) <F9AFE665-A3A2-3285-9495-19803A565861> /usr/lib/libobjc.A.dylib
0x7fff90a83000 - 0x7fff90a87fff libpam.2.dylib (21.30.1) <71EB0D88-DE84-3C8D-A2C5-58AA282BC5BC> /usr/lib/libpam.2.dylib
0x7fff90a88000 - 0x7fff90ab8ff7 libpcap.A.dylib (67) <450DB888-2C0C-3085-A5F1-69324DFE902C> /usr/lib/libpcap.A.dylib
0x7fff90ad6000 - 0x7fff90af2ffb libresolv.9.dylib (64) <A244AE4C-00B0-396C-98FF-97FE4DB3DA30> /usr/lib/libresolv.9.dylib
0x7fff90af3000 - 0x7fff90b2cfff libsandbox.1.dylib (592.31.1) <0B3D5690-EF2C-39A6-B63C-CFB8CBAC0956> /usr/lib/libsandbox.1.dylib
0x7fff90b40000 - 0x7fff90b41ff3 libspindump.dylib (230.3) <59FAC445-F8FB-3881-A69A-FD0E98100E19> /usr/lib/libspindump.dylib
0x7fff90b42000 - 0x7fff90c8afe3 libsqlite3.dylib (253) <B5BA5C96-AB13-34A0-8237-DD52A0181DFE> /usr/lib/libsqlite3.dylib
0x7fff90d7f000 - 0x7fff90d8cfff libxar.1.dylib (357) <58BFB84B-66FE-3299-AA3D-BBA178ADEE39> /usr/lib/libxar.1.dylib
0x7fff90d90000 - 0x7fff90e7fffb libxml2.2.dylib (30.11) <E12AF929-0FA5-3214-840F-C81E6AC9F36E> /usr/lib/libxml2.2.dylib
0x7fff90e80000 - 0x7fff90ea9fff libxslt.1.dylib (15.8) <FFF5DD45-F544-34B2-BE3C-DB877DC60081> /usr/lib/libxslt.1.dylib
0x7fff90eaa000 - 0x7fff90ebbff3 libz.1.dylib (67) <46E3FFA2-4328-327A-8D34-A03E20BFFB8E> /usr/lib/libz.1.dylib
0x7fff90eca000 - 0x7fff90eceff7 libcache.dylib (79) <0C8092D3-600F-3ADD-A036-F225B6CDCA43> /usr/lib/system/libcache.dylib
0x7fff90ecf000 - 0x7fff90edaff7 libcommonCrypto.dylib (60092.30.2) <B16E29B6-EC8D-3A8F-9A89-DD9CF35F7C4B> /usr/lib/system/libcommonCrypto.dylib
0x7fff90edb000 - 0x7fff90ee2fff libcompiler_rt.dylib (62) <E992E8D9-037C-3454-A366-A25E4D31D6BB> /usr/lib/system/libcompiler_rt.dylib
0x7fff90ee3000 - 0x7fff90eebfff libcopyfile.dylib (138) <64E285D9-5485-333B-AEE7-8B0C8FB9275F> /usr/lib/system/libcopyfile.dylib
0x7fff90eec000 - 0x7fff90f6ffdf libcorecrypto.dylib (442.30.20) <2074B932-FD79-30A9-8E90-AF25C49F2AF1> /usr/lib/system/libcorecrypto.dylib
0x7fff90f70000 - 0x7fff90fa2fff libdispatch.dylib (703.30.5) <EA0CC14E-D559-3802-B4B2-0E8C7579AAC4> /usr/lib/system/libdispatch.dylib
0x7fff90fa3000 - 0x7fff90fa8ff3 libdyld.dylib (421.2) <6F506653-FFF6-3DB8-84F1-109AE3C52F32> /usr/lib/system/libdyld.dylib
0x7fff90fa9000 - 0x7fff90fa9ffb libkeymgr.dylib (28) <1A318923-1200-3B06-B432-5007D82F195D> /usr/lib/system/libkeymgr.dylib
0x7fff90faa000 - 0x7fff90fb6ffb libkxld.dylib (3789.41.3) <87550136-9353-348B-9CD9-C342B48C5AAF> /usr/lib/system/libkxld.dylib
0x7fff90fb7000 - 0x7fff90fb7fff liblaunch.dylib (972.30.7) <15FACC21-079A-3BDF-9AFB-4253EFDEB587> /usr/lib/system/liblaunch.dylib
0x7fff90fb8000 - 0x7fff90fbdfff libmacho.dylib (894) <A2F38EC1-C37C-3B93-B0E4-36B07C177F8C> /usr/lib/system/libmacho.dylib
0x7fff90fbe000 - 0x7fff90fc0ff3 libquarantine.dylib (85) <C1D7749F-5F5F-3BB9-BEFC-1F0B9DA941FD> /usr/lib/system/libquarantine.dylib
0x7fff90fc1000 - 0x7fff90fc2ffb libremovefile.dylib (45) <CD42974E-BE0B-39FC-9BFC-8A7540A04DC6> /usr/lib/system/libremovefile.dylib
0x7fff90fc3000 - 0x7fff90fdbff7 libsystem_asl.dylib (349.30.2) <EFAC72D7-CB13-3DF7-ADF3-EC6635C6F1EA> /usr/lib/system/libsystem_asl.dylib
0x7fff90fdc000 - 0x7fff90fdcff7 libsystem_blocks.dylib (67) <B8C3701D-5A91-3D35-999D-2DC8D5393525> /usr/lib/system/libsystem_blocks.dylib
0x7fff90fdd000 - 0x7fff9106afef libsystem_c.dylib (1158.30.7) <2F881962-03CB-3B9D-A782-D98C1BBA4E3D> /usr/lib/system/libsystem_c.dylib
0x7fff9106b000 - 0x7fff9106effb libsystem_configuration.dylib (888.30.2) <4FE3983C-E4ED-3939-A578-03AD29C99788> /usr/lib/system/libsystem_configuration.dylib
0x7fff9106f000 - 0x7fff91072fff libsystem_coreservices.dylib (41.4) <1A572B9E-0C47-320F-8C64-7990D0A5FB5A> /usr/lib/system/libsystem_coreservices.dylib
0x7fff91073000 - 0x7fff9108bff3 libsystem_coretls.dylib (121.31.1) <4676F06D-274D-31BE-B61C-4D7A4AEF4858> /usr/lib/system/libsystem_coretls.dylib
0x7fff9108c000 - 0x7fff91092fff libsystem_dnssd.dylib (765.30.11) <DC708D84-ED7D-3936-B996-A67C66B8DDAA> /usr/lib/system/libsystem_dnssd.dylib
0x7fff91093000 - 0x7fff910bcff7 libsystem_info.dylib (503.30.1) <9ED9121C-F111-3FAD-BC2F-C95DEE1C9362> /usr/lib/system/libsystem_info.dylib
0x7fff910bd000 - 0x7fff910dfff7 libsystem_kernel.dylib (3789.41.3) <B75B128C-7D7A-3318-91CD-82B5A69C5329> /usr/lib/system/libsystem_kernel.dylib
0x7fff910e0000 - 0x7fff91127fe7 libsystem_m.dylib (3121.4) <266DB92B-A86F-3691-80FB-1B26AD73CFF3> /usr/lib/system/libsystem_m.dylib
0x7fff91128000 - 0x7fff91146ff7 libsystem_malloc.dylib (116.30.3) <F40DEE3B-386A-3529-A3F7-98117ED55BF4> /usr/lib/system/libsystem_malloc.dylib
0x7fff91147000 - 0x7fff9119effb libsystem_network.dylib (856.30.16) <4AE368E9-605D-379D-B04C-2AC7455B8250> /usr/lib/system/libsystem_network.dylib
0x7fff9119f000 - 0x7fff911a8ff3 libsystem_networkextension.dylib (563.30.15) <EB020B0C-7DF0-3EEF-8E3C-15DA3C01D687> /usr/lib/system/libsystem_networkextension.dylib
0x7fff911a9000 - 0x7fff911b2ff3 libsystem_notify.dylib (165.20.1) <E7FD3A7C-DD07-36E2-9FA4-7561F9F114DA> /usr/lib/system/libsystem_notify.dylib
0x7fff911b3000 - 0x7fff911bbfe7 libsystem_platform.dylib (126.1.2) <3CA06D4E-C00A-36DE-AA65-3A390097D1F6> /usr/lib/system/libsystem_platform.dylib
0x7fff911bc000 - 0x7fff911c6ff7 libsystem_pthread.dylib (218.30.1) <C869ED7C-BE29-3532-8E69-3A8DA1447EDC> /usr/lib/system/libsystem_pthread.dylib
0x7fff911c7000 - 0x7fff911caff7 libsystem_sandbox.dylib (592.31.1) <7BBFDF96-293F-3DD9-B3A4-7C168280B441> /usr/lib/system/libsystem_sandbox.dylib
0x7fff911cb000 - 0x7fff911ccfff libsystem_secinit.dylib (24) <5C1F1E47-0F7D-3E25-8DEB-D9DB1F902281> /usr/lib/system/libsystem_secinit.dylib
0x7fff911cd000 - 0x7fff911d4fff libsystem_symptoms.dylib (532.30.6) <5D990CF5-B58F-39F7-B375-99B4EC62CFBD> /usr/lib/system/libsystem_symptoms.dylib
0x7fff911d5000 - 0x7fff911f5ff7 libsystem_trace.dylib (518.30.7) <6D34D1EA-2A3C-3D2D-803E-A666E6AEEE52> /usr/lib/system/libsystem_trace.dylib
0x7fff911f6000 - 0x7fff911fbffb libunwind.dylib (35.3) <9F7C2AD8-A9A7-3DE4-828D-B0F0F166AAA0> /usr/lib/system/libunwind.dylib
0x7fff911fc000 - 0x7fff91225ff7 libxpc.dylib (972.30.7) <65E41BB6-EBD5-3D93-B0BE-B190CEE4DD93> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 50237
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=369.0M resident=0K(0%) swapped_out_or_unallocated=369.0M(100%)
Writable regions: Total=269.2M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=269.2M(100%)
```
|
https://github.com/electron/electron/issues/8957
|
https://github.com/electron/electron/pull/8971
|
f7e3f9035da3bf3eb946294a4100b6700bd41bc4
|
c1a478179ea313b8d8c8abbb305334684d4860da
| 2017-03-17T20:19:15Z |
c++
| 2017-03-22T16:00:38Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,952 |
["atom/browser/api/atom_api_tray.cc", "atom/browser/api/atom_api_tray.h", "atom/browser/ui/tray_icon.h", "atom/browser/ui/tray_icon_cocoa.h", "atom/browser/ui/tray_icon_cocoa.mm", "docs/api/tray.md"]
|
Add option to ignore tray double-click events
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
Tray icon does not process any clicks after first click/double-click until after certain timeout. You can see that system highlight still appears and disappears, but no events are dispatched. This is super annoying because the timeout is around a second or so. Quite frequently I spot that the click on tray icon did nothing however visual feedback was provided.
I think something is up in here: https://github.com/electron/electron/blob/master/atom/browser/ui/tray_icon_cocoa.mm#L219
I don't have popup menu since I have a menubar with improvised popover displayed down under tray icon. I think Tray menu should check if menu controller exists and let clicks go through otherwise. Right now it seems that it attempts to handle standard context menu in the same fashion even if there is none.
* Electron version: 1.6.3
* Operating system: macOS
### Expected behavior
Expected clicks or double-clicks being dispatched repeatedly.
### Actual behavior
No clicks received after first double click.
### How to reproduce
In order to reproduce that create a tray icon and add two handlers to it:
```js
var tray = new Tray(nativeImage.createEmpty());
tray.on('double-click', () => {
console.log('tray.double-click');
});
tray.on('click', () => {
console.log('tray.click');
});
```
Now start clicking like crazy non-stop, you can keep clicking forever and will not receive any event after click/double-click are dispatched. You have to wait over 1 second in order to get next click.
Your console log should look like this:
```
tray.click
tray.double-click
```
|
https://github.com/electron/electron/issues/8952
|
https://github.com/electron/electron/pull/12496
|
e1c374de6e5a9bb6d7657cc3a44e75e5370f5c9c
|
9488ef48675fe5f0733a722725c1314554befe8b
| 2017-03-17T16:42:01Z |
c++
| 2018-05-16T14:17:36Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,948 |
["atom/browser/ui/file_dialog.h", "atom/browser/ui/file_dialog_mac.mm", "docs/api/dialog.md", "lib/browser/api/dialog.js"]
|
<input type='file' /> and special folders
|
* Electron version: 1.6.2
* Operating system: macOS 10.12.3
### Actual behavior
I faced with strange behaviour of `<input type='file' />` in Electron.
You can select special Macs' folders - app folders (for example `/Applications/Calculator.app`).
In Finder it looks like file, but it's directory!
### Expected behavior
There are two possible ways.
1. `Chrome`way (and Safari). In real Chrome you can select `Calculator.app` from `<input type='file' />`. But Chrome transparently created `Calculator.app.zip` and attached this archive to input.
2. `Firefox` way. In Firefox you can not select any folders from `<input type='file' />`
### How to reproduce
I have created simple fiddle for that https://jsfiddle.net/s7c7k33b/ for testing in different browsers and Electron
|
https://github.com/electron/electron/issues/8948
|
https://github.com/electron/electron/pull/9834
|
1d9f69e7428c73a4e10f14740611c159b3e93800
|
959231f766fad8c0183050b7ac98cef1d14537cd
| 2017-03-17T11:47:26Z |
c++
| 2017-07-18T17:21:07Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,944 |
["spec/node-spec.js", "vendor/node"]
|
Child process not receiving messages when created with an `--eval` argument to `child_process.fork`
|
* Electron version: 1.6.3
* Operating system: macOS 10.12.3
In [this example repository](https://github.com/atom/electron-child-process-test), I'm creating two child processes via `child_process.fork`, one using `--eval` and the other via a module path to a file containing essentially the same source as I'm evaling in the first case. The code is as follows:
```js
const sourceToEval = `
console.log('starting child process 1')
process.on('message', m => console.log('child 1 got message', m))
console.log('waiting for messages in child process 1...')
`
const {fork} = require('child_process')
console.log('forking child process 1 (using --eval)')
const child1 = fork('--eval', [sourceToEval])
console.log('done forking child 1, sending message')
child1.send('hello from your parent')
console.log('forking child process 1 (using module path)')
const child2 = fork('./child')
console.log('done forking child r, sending message')
child2.send('hello from your parent')
```
### Expected behavior
I would expect to see output from *both* child processes on `stdout` of the parent when they receive messages.
### Actual behavior
I only see output from the process forked with a module path.
### How to reproduce
Run the app at https://github.com/atom/electron-child-process-test
|
https://github.com/electron/electron/issues/8944
|
https://github.com/electron/electron/pull/9132
|
4ec7cc913d840ee211a92afa13f260681d8bf8f9
|
e3407bb99ea59a79ef64582f156bb325efef1b8b
| 2017-03-17T00:09:20Z |
c++
| 2017-04-06T20:17:13Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,919 |
["docs/development/build-instructions-linux.md", "docs/development/build-instructions-osx.md", "docs/development/build-instructions-windows.md", "package.json", "script/clean.py"]
|
Add clean script that only removes build files
|
* Electron version: 1.6.3
* Operating system: Windows 7
### Expected behavior
`npm run clean ` should only deletes the out directory as said in the docs https://electron.atom.io/docs/development/build-instructions-windows/#cleaning .
### Actual behavior
It deleted the node_modules ( no real problem here because npm packages are cached on my system ) and `vendor/brightray/vendor/download/libchromiumcontent` &
`vendor/brightray/vendor/libchromiumcontent/src` ( around 2 GB ) .
I should have checked `script/clean.py` before running , but I depended on the documentation .
Is this the right behavior to delete what is downloaded from the bootstrap command ?
|
https://github.com/electron/electron/issues/8919
|
https://github.com/electron/electron/pull/8955
|
6ded27f3a9327061ff7e4a89fdf8c4b7ca895f10
|
253caf35abaee42f0f40cf7228acd2a5f4fa08c5
| 2017-03-14T09:06:51Z |
c++
| 2017-03-20T17:36:19Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,915 |
["atom/browser/api/atom_api_auto_updater.cc", "atom/browser/browser.cc", "atom/browser/browser_linux.cc", "atom/browser/browser_mac.mm", "atom/browser/native_window.cc", "atom/browser/window_list.cc", "atom/browser/window_list.h", "spec/api-app-spec.js", "spec/fixtures/api/exit-closes-all-windows-app/main.js", "spec/fixtures/api/exit-closes-all-windows-app/package.json"]
|
app.exit not work when created more than two windows
|
* Electron version: 1.6.2
* Operating system: macOS
### Expected behavior
<!-- What do you think should happen? -->
Exit the entire application.
### Actual behavior
<!-- What actually happens? -->
It remains a window can not close.
### How to reproduce
Use Electron start the following code.
Then `Command+Q`, the app will not be exited, it left a window and it won't be closed.
However, comment the line 47 or line 48 makes the `app.exit(0)` works fine.
```js
const electron = require('electron')
const app = electron.app
const Menu = electron.Menu
const BrowserWindow = electron.BrowserWindow
function createMain () {
let mainWindow = new BrowserWindow({
width: 1000,
height: 800
})
mainWindow.loadURL('https://github.com')
}
function createSecond () {
let secondWindow = new BrowserWindow({
width: 1000,
height: 800
})
secondWindow.loadURL('https://stackoverflow.com')
}
function createThird() {
let thirdWindow = new BrowserWindow({
width: 1000,
height: 800
})
thirdWindow.loadURL('https://google.com')
}
function setupMenu() {
menu = Menu.buildFromTemplate([
{
label: 'Options',
submenu: [
{
label: 'Exit',
accelerator: 'CmdOrCtrl+Q',
click: () => app.exit(0)
}
]
}
])
Menu.setApplicationMenu(menu)
}
app.on('ready', () => {
createMain();
createSecond();
// comment either the following two line makes app.exit(0) work fine
createThird();
setupMenu();
})
```
|
https://github.com/electron/electron/issues/8915
|
https://github.com/electron/electron/pull/9133
|
a30cf30e93032c46908e9ef739ba841a7def259d
|
964b210ce02cb67e883e03a41efdadc3d3a558e5
| 2017-03-13T19:15:11Z |
c++
| 2017-04-11T16:49:54Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,911 |
["atom/browser/api/atom_api_web_contents.cc", "atom/browser/api/atom_api_web_contents.h", "spec/api-browser-window-spec.js", "spec/fixtures/api/beforeunload-false-prevent3.html"]
|
beforeunload event not called on subsequent reloads
|
* Electron version: 1.6.3
* Operating system: Linux
### Expected behavior
When registering a `beforeunload` handler which cancels unloading, I would expect the handler to be called for every `BrowserWindow.reload()`.
### Actual behavior
On 1.6.3, the `beforeunload` handler is called for the first `reload` but not on subsequent calls. Even after removing the event handler, `reload` will not reload the window anymore.
### How to reproduce
```javascript
const cancelUnload = e => {
console.log('cancelUnload called')
e.returnValue = false
}
window.addEventListener('beforeunload', cancelUnload)
remote.getCurrentWindow().reload() // [1] -> cancelUnload called
remote.getCurrentWindow().reload() // [2] -> cancelUnload called
remote.getCurrentWindow().close() // [3] -> cancelUnload called
remote.getCurrentWindow().close() // [4] -> cancelUnload called
window.removeEventListener('beforeunload', cancelUnload)
remote.getCurrentWindow().reload() // [5] -> reloads window
remote.getCurrentWindow().close() // [6] -> closes window
```
I would expect `cancelUnload` to be printed to the console four times and the step at `[5]` to actually reload the window. This is works up to Electron 1.6.2.
On Electron 1.6.3 `cancelUnload` is not printed at step `[2]` (nor on any subsequent calls to reload). What's more, event after removing the `beforeunload` handler, `reload` does not work anymore: at step `[5]` the window does not reload (but closing the window at `[6]` works).
|
https://github.com/electron/electron/issues/8911
|
https://github.com/electron/electron/pull/9292
|
aa212bd955614e68d889add142a1a7b87d2bb7b1
|
8c856922f3c9a4443b04363c7747578eba59fc21
| 2017-03-13T09:45:03Z |
c++
| 2017-05-09T16:06:26Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,891 |
["docs/api/client-request.md", "lib/browser/api/net.js", "shell/browser/api/electron_api_url_loader.cc", "spec-main/api-net-spec.ts"]
|
Cookie handling in net module
|
* Electron version: 1.6.2
* Operating system: macOS 10.12
### Expected behavior
Requests sent with the net module should behave one of two ways regarding cookies.
- Either not care about cookies at all, and neither store them nor send them back automatically.
- Or, fully handle cookies, store them when getting a `set-cookie` header, and send them back when necessary, automatically (with the possibility of an option to disable this behaviour)
### Actual behavior
Requests sent with the net module store cookies in the Session used by the request when getting a `set-cookie` header, but do not send them back afterwards.
### How to reproduce
```bash
git clone https://github.com/arantes555/electron-net-cookies-testcase.git && cd electron-net-cookies-testcase
npm i
npm start
```
output:
```
Server started
REQUEST-HEADERS { 'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'fr',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Electron/1.6.2 Safari/537.36' }
Response SET-COOKIE: undefined
STORED COOKIES: []
REQUEST-HEADERS { 'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'fr',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Electron/1.6.2 Safari/537.36' }
Response SET-COOKIE: a=1,b=1
STORED COOKIES: [{"name":"a","value":"1","domain":"localhost"},{"name":"b","value":"1","domain":"localhost"}]
REQUEST-HEADERS { 'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'fr',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Electron/1.6.2 Safari/537.36' }
Response SET-COOKIE: a=1,b=1
```
Btw, if I'm reporting multiple issues with the net module these days, it's because I'm working on https://github.com/arantes555/electron-fetch , if you wanna take a look :)
|
https://github.com/electron/electron/issues/8891
|
https://github.com/electron/electron/pull/22704
|
07a049ef1b555d5016e13f92c548c4dc40bdfd93
|
60bd52880f3887894b00665b7ea6262be8e18c67
| 2017-03-10T12:20:30Z |
c++
| 2020-03-20T22:56:02Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,881 |
["atom/browser/ui/views/submenu_button.cc"]
|
MenuItem label doesn't accept '&' but submenu label does.
|
<!--
Thanks for opening an issue! A few things to keep in mind:
- The issue tracker is only for bugs and feature requests.
- Before reporting a bug, please try reproducing your issue against
the latest version of Electron.
- If you need general advice, join our Slack: http://atom-slack.herokuapp.com
-->
* Electron version: 1.4.3
* Operating system: Win 10 64bit
### Expected behavior
```
menu.append(new MenuItem({
label: 'S && R Book',
click() {
win.webContents.send('menu-sr')
}
}))
```
Should display 'S & R Book' in the menu bar.
### Actual behavior
'S R Book' displays
### Working in submenu
```
menu.append(new MenuItem({
label: 'Modules',
submenu: [{
label: 'Applicant Board',
click() {
win.webContents.send('menu-pb')
}
}, {
label: 'S && R Book',
click() {
win.webContents.send('menu-sr')
}
}, {
type: 'separator'
}, {
label: 'Exit',
click() {
console.log('Exit App')
app.quit()
}
}]
}))
```
This correctly displays 'S & R Book' in the submenu item.
I've tried `\&`, `&`, `&` and none of these work either. Whatever I seem to do, it parses the & out of the label.
|
https://github.com/electron/electron/issues/8881
|
https://github.com/electron/electron/pull/8984
|
2dabe8d6face3c422f771fcf3d150c05b190cf85
|
b1275a8ef0bbc0cd78db3cee4a599727e1f1c063
| 2017-03-09T17:32:25Z |
c++
| 2017-03-27T16:47:50Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,877 |
["atom/common/api/atom_api_clipboard.cc", "atom/common/api/atom_api_clipboard.h", "docs/api/clipboard.md", "spec/api-clipboard-spec.js"]
|
clipboard.read() cannot be used to retrieve binary data
|
* Electron version: 1.6.3
* Operating system: macOS 10.12.3 (Sierra)
### Expected behavior
`clipboard.read("com.adobe.pdf", "binary")` should return data as a `Buffer` or `String` with `binary` encoding if given clipboard data type is present.
### Actual behavior
Data is returned as `String`. When save to as a file using 'binary' encoding, file length is shorter than actual clipboard data size (verified using ClipboardViewer).
### How to reproduce
Use Sketch.app to draw a circle vector. Copy the circle into clipboard. One of the data types added to clipboard will be of type "com.adobe.pdf". Switch to test electron app that calls `clipboard.read`.
Now save the string to a file using `binary` encoding. Resulting PDF file can't be viewed as PDF and PDF validation will fail.
**UPDATE:** Other vector editing apps like Illustrator or Affinity Designer should also create `com.adobe.pdf" as well as Apple PDF Pasteboard type since this is how vector copy-paste works across editors.
**UPDATE2:** Just found a closed issue mentioning this may be due to Chromium returning only string. If this is true perhaps platform clipboard should be accessed directly instead of relying on Chromium.
|
https://github.com/electron/electron/issues/8877
|
https://github.com/electron/electron/pull/8942
|
fe5db82d47f8443c3ab15692fce6d120824732f5
|
64984ac23bb3fc187c9d03ef958f7ef768910645
| 2017-03-09T12:43:21Z |
c++
| 2017-03-17T17:56:24Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,871 |
["atom/browser/net/url_request_fetch_job.cc"]
|
Crash in atom::URLRequestFetchJob::OnURLFetchComplete
|
* Electron version: 1.6.1
* Operating system: MacOS 10.12
Had a crash happen at random. Might want to glance at OnURLFetchComplete and see if there are any obvious bugs.
```
Thread 9 Crashed:: Chrome_IOThread
0 com.github.electron.framework 0x000000010bdd3c40 0x10a237000 + 28953664
1 com.github.electron.framework 0x000000010a2f5606 atom::URLRequestFetchJob::OnURLFetchComplete(net::URLFetcher const*) + 70
2 com.github.electron.framework 0x000000010a2f5670 non-virtual thunk to atom::URLRequestFetchJob::OnURLFetchComplete(net::URLFetcher const*) + 16
3 com.github.electron.framework 0x000000010a481d91 0x10a237000 + 2403729
4 com.github.electron.framework 0x000000010a455c26 0x10a237000 + 2223142
5 com.github.electron.framework 0x000000010a455efc 0x10a237000 + 2223868
6 com.github.electron.framework 0x000000010a456243 0x10a237000 + 2224707
7 com.github.electron.framework 0x000000010a458a75 0x10a237000 + 2234997
8 com.github.electron.framework 0x000000010a45598e 0x10a237000 + 2222478
9 com.github.electron.framework 0x000000010a46a4e3 0x10a237000 + 2307299
10 com.github.electron.framework 0x000000010a6c6ef8 0x10a237000 + 4783864
11 com.github.electron.framework 0x000000010a6c7086 0x10a237000 + 4784262
12 com.github.electron.framework 0x000000010a4829f2 0x10a237000 + 2406898
13 com.github.electron.framework 0x000000010a460577 0x10a237000 + 2266487
14 libsystem_pthread.dylib 0x00007fffa1d55aab _pthread_body + 180
15 libsystem_pthread.dylib 0x00007fffa1d559f7 _pthread_start + 286
16 libsystem_pthread.dylib 0x00007fffa1d551fd thread_start + 13
```
Full dump: https://gist.github.com/pfrazee/a6fc2d2f9127892b9c4627953ebace4a
|
https://github.com/electron/electron/issues/8871
|
https://github.com/electron/electron/pull/10918
|
52cbec24389fcd6bb0ef4eeb11bed268fd3ef208
|
3230048f8129267ab2f0f000a9235dcc20e0f8be
| 2017-03-08T22:29:08Z |
c++
| 2017-10-26T09:35:31Z |
closed
|
electron/electron
|
https://github.com/electron/electron
| 8,868 |
["atom/browser/api/atom_api_url_request.cc", "atom/browser/api/atom_api_url_request.h", "atom/browser/net/atom_url_request.cc", "atom/browser/net/atom_url_request.h", "docs/api/client-request.md", "lib/browser/api/net.js", "spec/api-net-spec.js"]
|
Impossible to control redirections in net.request
|
* Electron version: 1.6.1
* Operating system: All
### Expected behavior
It should be possible, when using net.request, to set redirection options. The `ClientRequest` constructor options should contain a "redirect" attribute, with possible values "follow", "error" or "manual" (like window.fetch), and defaulting to "follow".
Also, when a redirection did happen, it should be possible to know it did, and at least get the URL to which we were redirect (for example as an attribute of IncomingMessage).
### Actual behavior
It is not possible to stop redirections from happening, or even to know that it happened and get the new URL.
### How to reproduce
Use net.request on any URL that does a redirect.
|
https://github.com/electron/electron/issues/8868
|
https://github.com/electron/electron/pull/9007
|
03b2167f6cd2912fced3d5b8e31610327dc56734
|
4441d557a2d25009ad0ff061c4c4a882e1195370
| 2017-03-08T17:07:00Z |
c++
| 2017-03-28T16:31:05Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.