Skip to content

Instantly share code, notes, and snippets.

@ChALkeR
Created August 18, 2016 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChALkeR/c2d2fd3f1d72d51ad883df195be03a85 to your computer and use it in GitHub Desktop.
Save ChALkeR/c2d2fd3f1d72d51ad883df195be03a85 to your computer and use it in GitHub Desktop.
concat-stream (7 809 704 downloads / month) leaking uninitialized buffers
var concat = require('concat-stream')
var write = concat(console.log)
write.write('a');
write.write(1000);
write.end();
@jasnell
Copy link

jasnell commented Aug 22, 2016

oy... this makes me sad.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment