Console: Do not try and log through a closed down window

Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
This commit is contained in:
Daniel Silverstone 2020-10-02 20:15:23 +01:00
parent a4bda322a9
commit 2d58372ec2
No known key found for this signature in database
GPG Key ID: C30DF439F2987D74
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ write_log_entry(duk_context *ctx, unsigned int group, browser_window_console_fla
duk_size_t msglen;
const char *msg = duk_safe_to_lstring(ctx, 0, &msglen);
if (priv_win == NULL || priv_win->win == NULL ||
if (priv_win == NULL || priv_win->win == NULL || priv_win->closed_down == true ||
browser_window_console_log(priv_win->win, BW_CS_SCRIPT_CONSOLE,
msg, msglen,
flags) != NSERROR_OK) {