Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/env-inl.h8
-rw-r--r--src/env.h3
-rw-r--r--src/node_process_methods.cc11
3 files changed, 0 insertions, 22 deletions
diff --git a/src/env-inl.h b/src/env-inl.h
index de3d651fa7d..ec80faba4c4 100644
--- a/src/env-inl.h
+++ b/src/env-inl.h
@@ -808,14 +808,6 @@ void Environment::set_filehandle_close_warning(bool on) {
emit_filehandle_warning_ = on;
}
-bool Environment::emit_insecure_umask_warning() const {
- return emit_insecure_umask_warning_;
-}
-
-void Environment::set_emit_insecure_umask_warning(bool on) {
- emit_insecure_umask_warning_ = on;
-}
-
void Environment::set_source_maps_enabled(bool on) {
source_maps_enabled_ = on;
}
diff --git a/src/env.h b/src/env.h
index 16546fdd494..410d5c3fc9d 100644
--- a/src/env.h
+++ b/src/env.h
@@ -1160,8 +1160,6 @@ class Environment : public MemoryRetainer {
inline bool filehandle_close_warning() const;
inline void set_filehandle_close_warning(bool on);
- inline bool emit_insecure_umask_warning() const;
- inline void set_emit_insecure_umask_warning(bool on);
inline void set_source_maps_enabled(bool on);
inline bool source_maps_enabled() const;
@@ -1386,7 +1384,6 @@ class Environment : public MemoryRetainer {
bool emit_env_nonstring_warning_ = true;
bool emit_err_name_warning_ = true;
bool emit_filehandle_warning_ = true;
- bool emit_insecure_umask_warning_ = true;
bool source_maps_enabled_ = false;
size_t async_callback_scope_depth_ = 0;
diff --git a/src/node_process_methods.cc b/src/node_process_methods.cc
index 105cbff151b..1d8bcd54057 100644
--- a/src/node_process_methods.cc
+++ b/src/node_process_methods.cc
@@ -206,17 +206,6 @@ static void Umask(const FunctionCallbackInfo<Value>& args) {
uint32_t old;
if (args[0]->IsUndefined()) {
- if (env->emit_insecure_umask_warning()) {
- env->set_emit_insecure_umask_warning(false);
- if (ProcessEmitDeprecationWarning(
- env,
- "Calling process.umask() with no arguments is prone to race "
- "conditions and is a potential security vulnerability.",
- "DEP0139").IsNothing()) {
- return;
- }
- }
-
old = umask(0);
umask(static_cast<mode_t>(old));
} else {