summaryrefslogtreecommitdiff
path: root/src/node_process_methods.cc
diff options
context:
space:
mode:
authorBeth Griggs <Bethany.Griggs@uk.ibm.com>2020-09-24 23:02:33 +0100
committerMyles Borins <myles.borins@gmail.com>2020-09-30 21:46:25 -0400
commit4acab22ac2dd4d066c7d50eb1916e34af555eccf (patch)
tree82e145106a9e6b7b5bcc4fa215f14ccc73f32ba2 /src/node_process_methods.cc
parent869ded3b0e9b1f53b7161827bc2275a584881fc7 (diff)
downloadnode-new-4acab22ac2dd4d066c7d50eb1916e34af555eccf.tar.gz
Revert "src: runtime deprecate process.umask()"
This reverts commit 60c4c2b6c557efbb2f8f3a3de147baf987931d41. PR-URL: https://github.com/nodejs/node/pull/35332 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruy Adorno <ruyadorno@github.com>
Diffstat (limited to 'src/node_process_methods.cc')
-rw-r--r--src/node_process_methods.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/node_process_methods.cc b/src/node_process_methods.cc
index 105cbff151..1d8bcd5405 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 {