mirror of https://github.com/nodejs/node.git
crypto: fix read of potentially uninitialized variable
parent
decd81838a
commit
b185751c3f
|
@ -176,7 +176,7 @@ static BIO* LoadBIO (Handle<Value> v) {
|
|||
|
||||
HandleScope scope;
|
||||
|
||||
int r;
|
||||
int r = -1;
|
||||
|
||||
if (v->IsString()) {
|
||||
String::Utf8Value s(v->ToString());
|
||||
|
|
Loading…
Reference in New Issue