crypto: fix read of potentially uninitialized variable

pull/22966/head
Ben Noordhuis 2011-09-21 01:11:07 +02:00
parent decd81838a
commit b185751c3f
1 changed files with 1 additions and 1 deletions

View File

@ -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());