From 0f944ab3cf4435c299471e90515742eb99bac15e Mon Sep 17 00:00:00 2001 From: Сковорода Никита Андреевич Date: Fri, 23 Sep 2016 23:55:53 +0300 Subject: dgram: use Buffer.alloc(0) for zero-size buffers There is no difference between alloc(0) and allocUnsafe(0), so there is no reason to confuse anyone reading the code with an additional call to allocUnsafe. PR-URL: https://github.com/nodejs/node/pull/8751 Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Ilkka Myller Reviewed-By: Anna Henningsen --- lib/dgram.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/dgram.js b/lib/dgram.js index 3a54c3c7f1..39d43092e1 100644 --- a/lib/dgram.js +++ b/lib/dgram.js @@ -350,7 +350,7 @@ Socket.prototype.send = function(buffer, self.bind({port: 0, exclusive: true}, null); if (list.length === 0) - list.push(Buffer.allocUnsafe(0)); + list.push(Buffer.alloc(0)); // If the socket hasn't been bound yet, push the outbound packet onto the // send queue and send after binding is complete. -- cgit v1.2.3