gfx/cairo/disable-printing.patch

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 diff --git a/gfx/cairo/cairo/src/cairo-win32-surface.c b/gfx/cairo/cairo/src/cairo-win32-surface.c
     2 --- a/gfx/cairo/cairo/src/cairo-win32-surface.c
     3 +++ b/gfx/cairo/cairo/src/cairo-win32-surface.c
     4 @@ -1892,21 +1892,22 @@ cairo_win32_surface_get_dc (cairo_surfac
     5  	return winsurf->dc;
     6      }
     8      if (_cairo_surface_is_paginated (surface)) {
     9  	cairo_surface_t *target;
    11  	target = _cairo_paginated_surface_get_target (surface);
    13 +#ifndef CAIRO_OMIT_WIN32_PRINTING
    14  	if (_cairo_surface_is_win32_printing (target)) {
    15  	    winsurf = (cairo_win32_surface_t *) target;
    16 -
    17  	    return winsurf->dc;
    18  	}
    19 +#endif
    20      }
    22      return NULL;
    23  }
    25  /**
    26   * cairo_win32_surface_get_image
    27   * @surface: a #cairo_surface_t

mercurial