From dab32af8502bece3c9a11b069e1551da86e6fce0 Mon Sep 17 00:00:00 2001 From: Tyson Smith Date: Fri, 6 Dec 2019 16:08:01 -0800 Subject: [PATCH] Add support for GC and CC on Firefox --- template.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/template.html b/template.html index f686596..51f06e4 100755 --- a/template.html +++ b/template.html @@ -10,6 +10,8 @@ function freememory() { try { CollectGarbage(); } catch(err) { } + try { FuzzingFunctions.garbageCollect(); } catch(err) { } + try { FuzzingFunctions.cycleCollect(); } catch(err) { } try { window.gc(); } catch(err) { } }