Anna Henningsen
Anna Henningsen
Which compiler flags are you using here?
Yeah, I’m talking about the CPU flags you might have enabled, i.e. `-msomething` – in particular, do you compile for at least SSSE3? Does it help to add `#include `...
@mcpiroman This needs to be rebased against Node.js master
That’s interesting – I don’t think Node.js does anything specifically that would lead to this behavior, and it leaves the scheduling fully to the OS. I’d be curious whether other...
https://github.com/mscdex/ssh2/issues/989 is the upstream ticket in the SSH library that we use for this. The maintainer has suggested a fix that seems to work as far as I can tell,...
Fwiw, `process._tickDomainCallback` doesn’t exist anymore in Node 9.3.0+ … I guess if you want a safe way to run the tick queue at a certain point, you can do a...
This is very déjà-vu-ish to me, although I can’t find another issue for this bug… /cc @nodejs/v8?
@isomorphisms I think you want to `return;` inside the `if` block as well, otherwise you first run the callback with `callback(null, user); ` and then with `callback( "No user found",...
I like the idea, but switching to `alloca` unconditionally might not be ideal, because it’s completely possible to bring things to a stack overflow using a single call that way…...
Thanks! I’ll take a look, although I can’t promise when I’ll get to it :) My guess is that UBSan is halfway right here, but that this isn’t UB in...