Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Applications
Tor Browser
Commits
8f1fb5c4
Commit
8f1fb5c4
authored
Aug 04, 2017
by
Georg Koppen
Committed by
Alex Catarineu
Sep 15, 2020
Browse files
Bug 21830: Copying large text from web console leaks to /tmp
Patch written by Neill Miller
parent
dad63721
Changes
1
Hide whitespace changes
Inline
Side-by-side
widget/nsTransferable.cpp
View file @
8f1fb5c4
...
...
@@ -33,6 +33,7 @@ Notes to self:
#include
"nsILoadContext.h"
#include
"nsXULAppAPI.h"
#include
"mozilla/UniquePtr.h"
#include
"mozilla/Preferences.h"
using
namespace
mozilla
;
...
...
@@ -195,6 +196,11 @@ nsTransferable::Init(nsILoadContext* aContext) {
if
(
aContext
)
{
mPrivateData
=
aContext
->
UsePrivateBrowsing
();
}
else
{
// without aContext here to provide PrivateBrowsing information,
// we defer to the active configured setting
mPrivateData
=
mozilla
::
Preferences
::
GetBool
(
"browser.privatebrowsing.autostart"
);
}
#ifdef DEBUG
mInitialized
=
true
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment