Fix uninitialised value error as reported by valgrind (#1075)

* Fix uninitialised value error as reported by valgrind
This commit is contained in:
abraunegg 2020-09-25 12:55:21 +10:00 committed by GitHub
parent 7684c74600
commit e44e6b4233
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -949,7 +949,8 @@ final class OneDriveApi
} else {
http.onSend = buf => 0;
}
return perform();
auto response = perform();
return response;
}
private JSONValue perform()