stream_wrap.cc: fix typo

pull/24503/head
Bert Belder 2012-05-09 04:34:41 +02:00
parent 27ddd14e9f
commit 4624cf1214
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ Handle<Value> StreamWrap::WriteStringImpl(const Arguments& args) {
break;
case kUcs2:
storage_size += string->Length() * sizeof(uint16_t);
storage_size = string->Length() * sizeof(uint16_t);
break;
default: