-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tty: avoid oob warning in TTYWrap::GetWindowSize() #11454
Conversation
@reklatsmasters could you make sure the commit message first line is no more than 50 characters long? :D (looks like it might be over?) |
@Fishrock123 Ok, replaced |
Landed in 3f02b47 (with the commit message title set to the changed PR title here). Thanks for the PR! |
PR-URL: #11454 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #11454 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #11454 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #11454 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #11454 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
PR-URL: #11454 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
If we run node with flag
--trace_array_abuse
, we will see many warnings likeThese logs generated by
CheckArrayAbuse
. If we set envNODE_DEBUG
, we get these messages fortty
module. Other warnings generated from process.binding and StackPushStep to reproduce:
NODE_DEBUG=module node --trace_array_abuse -e ''
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
tty