Commit a4db4606 authored by Gabriel Ivăncescu's avatar Gabriel Ivăncescu Committed by Alexandre Julliard

jscript: Fix a copy-paste mistake.

parent 0a121bdd
......@@ -130,7 +130,7 @@ static void clear_script_queue(JScript *This)
static void clear_persistent_code_list(JScript *This)
{
while(!list_empty(&This->queued_code))
while(!list_empty(&This->persistent_code))
{
bytecode_t *iter = LIST_ENTRY(list_head(&This->persistent_code), bytecode_t, entry);
list_remove(&iter->entry);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment