Files
node/lib
Tobias Nießen 997334c949 process: fix uid/gid validation to avoid crash
id |= 0 turns unsigned 32-bit integer values exceeding the unsigned
31-bit range into negative integers, causing a crash. Use id >>>= 0
instead, which works properly for all unsigned 32-bit integers.

Refs: https://github.com/nodejs/node/pull/36786
PR-URL: https://github.com/nodejs/node/pull/44910
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Erick Wendel <erick.workspace@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
2022-10-10 01:12:15 +00:00
..
2022-01-30 14:07:32 +00:00
2022-06-11 12:18:15 +02:00
2022-08-11 13:07:52 +00:00
2022-06-11 12:18:11 +02:00
2022-08-17 16:08:58 +00:00
2022-10-04 09:44:08 +00:00
2022-03-14 21:12:44 +00:00
2022-09-08 09:33:20 +00:00