summaryrefslogtreecommitdiff
path: root/src/scripts.c
diff options
context:
space:
mode:
authorportix <none@none>2012-05-10 20:49:46 +0200
committerportix <none@none>2012-05-10 20:49:46 +0200
commit7a892849de8c127647d6c47709fe076015ccdcc0 (patch)
treef53b6a04d076a15a11707cfe4c53b33d14ec2fc7 /src/scripts.c
parent74e19921c9680974289c7850c778f74f3552695a (diff)
downloaddwb-7a892849de8c127647d6c47709fe076015ccdcc0.zip
Initialize view->script_wv instead of view->script when scripts aren't used
--HG-- branch : scripts
Diffstat (limited to 'src/scripts.c')
-rw-r--r--src/scripts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts.c b/src/scripts.c
index 57728036..f8036b97 100644
--- a/src/scripts.c
+++ b/src/scripts.c
@@ -1242,7 +1242,7 @@ create_global_object() {
void
scripts_create_tab(GList *gl) {
if (_global_context == NULL ) {
- VIEW(gl)->script = NULL;
+ VIEW(gl)->script_wv = NULL;
return;
}
JSObjectRef o = scripts_make_object(_global_context, G_OBJECT(VIEW(gl)->web));