Skip to content

Commit 4d864df

Browse files
authored
Skip callbacks after abort (#13934)
I believe this was an oversight when this code was refactored as part of #13596.
1 parent 5403790 commit 4d864df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/library.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3619,8 +3619,8 @@ LibraryManager.library = {
36193619
if (ABORT) {
36203620
#if ASSERTIONS
36213621
err('user callback triggered after application aborted. Ignoring.');
3622-
return;
36233622
#endif
3623+
return;
36243624
}
36253625
// For synchronous calls, let any exceptions propagate, and don't let the runtime exit.
36263626
if (synchronous) {

0 commit comments

Comments
 (0)