Browse Source

crypto: fix read of potentially uninitialized variable

v0.7.4-release
Ben Noordhuis 13 years ago
parent
commit
b185751c3f
  1. 2
      src/node_crypto.cc

2
src/node_crypto.cc

@ -176,7 +176,7 @@ static BIO* LoadBIO (Handle<Value> v) {
HandleScope scope; HandleScope scope;
int r; int r = -1;
if (v->IsString()) { if (v->IsString()) {
String::Utf8Value s(v->ToString()); String::Utf8Value s(v->ToString());

Loading…
Cancel
Save