Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Fix base64 write for buffers
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Sep 9, 2010
1 parent 1f947f7 commit ececd92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_buffer.cc
Expand Up @@ -618,7 +618,7 @@ Handle<Value> Buffer::Base64Write(const Arguments &args) {
}

char a, b, c, d;
char* dst = buffer->data();
char* dst = buffer->data() + offset;
const char *src = *s;
const char *const srcEnd = src + s.length();

Expand Down

0 comments on commit ececd92

Please sign in to comment.