From ed78892e46725e6cae8eb45320c69342d03acfb6 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 25 Feb 2009 01:29:02 +0100 Subject: [PATCH] jscript: Reset mark in jsheap_clear. --- dlls/jscript/jsutils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/jscript/jsutils.c b/dlls/jscript/jsutils.c index 5f24b7cd45d..5417daf5d51 100644 --- a/dlls/jscript/jsutils.c +++ b/dlls/jscript/jsutils.c @@ -140,6 +140,7 @@ void jsheap_clear(jsheap_t *heap) } heap->last_block = heap->offset = 0; + heap->mark = FALSE; } void jsheap_free(jsheap_t *heap)