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
cb741a5d
Commit
cb741a5d
authored
Aug 04, 2017
by
Georg Koppen
Committed by
Matthew Finkel
May 04, 2021
Browse files
Bug 21830: Copying large text from web console leaks to /tmp
Patch written by Neill Miller
parent
55a34597
Changes
1
Hide whitespace changes
Inline
Side-by-side
widget/nsTransferable.cpp
View file @
cb741a5d
...
...
@@ -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