Wrong scope
This commit is contained in:
parent
178238fb71
commit
1240387cd2
2
ab.c
2
ab.c
|
@ -33,7 +33,6 @@ along with wyebadblock. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define EXE "wyebab"
|
#define EXE "wyebab"
|
||||||
|
|
||||||
#include <webkit2/webkit-web-extension.h>
|
#include <webkit2/webkit-web-extension.h>
|
||||||
static bool first = true;
|
|
||||||
static bool check(const char *requri, const char *pageuri)
|
static bool check(const char *requri, const char *pageuri)
|
||||||
{
|
{
|
||||||
char *uris = g_strconcat(requri, " ", pageuri, NULL);
|
char *uris = g_strconcat(requri, " ", pageuri, NULL);
|
||||||
|
@ -49,6 +48,7 @@ static gboolean reqcb(WebKitWebPage *kp, WebKitURIRequest *req,
|
||||||
if (g_object_get_data(G_OBJECT(kp), "adblock") == (gpointer)'n')
|
if (g_object_get_data(G_OBJECT(kp), "adblock") == (gpointer)'n')
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
static bool first = true;
|
||||||
if (first)
|
if (first)
|
||||||
{
|
{
|
||||||
if (webkit_uri_request_get_http_headers(req))
|
if (webkit_uri_request_get_http_headers(req))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user