js/src/shell/js-gdb.gdb

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 define hookpost-run
     2     if ($sigaction)
     3         call free($sigaction)
     4         set $sigaction = 0
     5     end
     6 end
     8 catch signal SIGSEGV
     9 commands
    10     if !$sigaction
    11         set $sigaction = malloc(sizeof(sigaction))
    12     end
    13     set $ignored = __sigaction(11, 0, $sigaction)
    14     set $handler = ((struct sigaction *)$sigaction)->__sigaction_handler.sa_handler
    15     if $handler == AsmJSFaultHandler
    16         continue
    17     end
    18 end

mercurial