Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: do not modify original argv array on AIX
AIX passes the same argv array that ps and other utilities see to main(). Node removes elements from argv but as it can't pass back updates to argc which is passed by value to main() it effectively corrupts that array for other users. Fixes: nodejs#10607
- Loading branch information