From c7e943c7d26e117ee522bf716182cfb81fdf4cf4 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 17 May 2011 07:28:15 +0000 Subject: check for dereference of teh right value svn path=/trunk/netsurf/; revision=12424 --- desktop/frames.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/frames.c b/desktop/frames.c index ec5bb27f3..49820a2ee 100644 --- a/desktop/frames.c +++ b/desktop/frames.c @@ -154,7 +154,7 @@ void browser_window_recalculate_iframes(struct browser_window *bw) { rect.x1, rect.y1); } else { LOG(("Bad IFrame window=%p, box=%p", window, - window->box != NULL ? window->box : NULL)); + window != NULL ? window->box : NULL)); } } } -- cgit v1.2.3