Skip to content

Commit

Permalink
buffer: allow invalid encoding in from
Browse files Browse the repository at this point in the history
Looks like a bug to me but the change should probably
done in a semver majpr.

PR-URL: #54533
Reviewed-By: Matteo Collina <[email protected]>
Reviewed-By: Benjamin Gruenbaum <[email protected]>
Reviewed-By: Jake Yuesong Li <[email protected]>
Reviewed-By: Rafael Gonzaga <[email protected]>
  • Loading branch information
ronag authored and targos committed Oct 2, 2024
1 parent 7f8edce commit 84bf93b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/buffer.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ function createFromString(string, ops, length = ops.byteLength(string)) {

function fromString(string, encoding) {
let ops;
if (!encoding || encoding === 'utf8') {
if (!encoding || encoding === 'utf8' || typeof encoding !== 'string') {
ops = encodingOps.utf8;
} else {
ops = getEncodingOps(encoding);
Expand Down
3 changes: 3 additions & 0 deletions test/parallel/test-buffer-from.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,6 @@ throws(() => {
code: 'ERR_OUT_OF_RANGE',
})
);

// Invalid encoding is allowed
Buffer.from('asd', 1);

0 comments on commit 84bf93b

Please sign in to comment.