1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-26 16:45:12 -04:00

setTimeout: Fix da assert

Yeah, Miciah, I'm an idiot, don't walk around the fact.
This commit is contained in:
Petr Baudis 2006-11-05 01:13:29 +01:00 committed by Petr Baudis
parent da5ec748b6
commit 8ecf87b7b7

View File

@ -308,7 +308,7 @@ ecmascript_timeout_handler(void *i)
{
struct ecmascript_interpreter *interpreter = i;
assertm(interpreter->vs->doc_view, "setTimeout: vs with no document (e_f %d)", interpreter->vs->doc_view);
assertm(interpreter->vs->doc_view, "setTimeout: vs with no document (e_f %d)", interpreter->vs->ecmascript_fragile);
interpreter->vs->doc_view->document->timeout = TIMER_ID_UNDEF;
ecmascript_eval(interpreter, &interpreter->code, NULL);