diff options
author | portix <none@none> | 2012-05-10 20:49:46 +0200 |
---|---|---|
committer | portix <none@none> | 2012-05-10 20:49:46 +0200 |
commit | 7a892849de8c127647d6c47709fe076015ccdcc0 (patch) | |
tree | f53b6a04d076a15a11707cfe4c53b33d14ec2fc7 /src/scripts.c | |
parent | 74e19921c9680974289c7850c778f74f3552695a (diff) | |
download | dwb-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.c | 2 |
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)); |