Closed GoogleCodeExporter closed 9 years ago
Any objections on this? The garbage collection should be done before we release
the
context, no?
Tested, test suite passes with this patc.
Index: src/modules/pacrunner_webkit.c
===================================================================
--- src/modules/pacrunner_webkit.c (revision 400)
+++ src/modules/pacrunner_webkit.c (working copy)
@@ -121,8 +121,8 @@
static void ctxs_free(ctxStore *self)
{
if (!self) return;
+ JSGarbageCollect(self->ctx);
JSGlobalContextRelease(self->ctx);
- JSGarbageCollect(self->ctx);
px_free(self->pac);
px_free(self);
}
Original comment by dominiqu...@gmail.com
on 1 Jul 2009 at 11:45
The fix has been commited. Testsuite passes. (svn rev 404)
Original comment by dominiqu...@gmail.com
on 3 Aug 2009 at 5:35
Is it sure that this issue was fixed?
I'm still facing identical issue now.
The crash occurs while runing webkit on Ubuntu 11.04.
Original comment by shivami...@gmail.com
on 26 May 2011 at 1:34
Original issue reported on code.google.com by
dominiqu...@gmail.com
on 27 Jun 2009 at 9:28