Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f26f582d authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "md: dm-req-crypt: Initialize auto variable"

parents 9e0d2d36 0194101b
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -137,7 +137,7 @@ static void req_crypt_split_io_complete


static  bool req_crypt_should_encrypt(struct req_dm_crypt_io *req)
static  bool req_crypt_should_encrypt(struct req_dm_crypt_io *req)
{
{
	int ret;
	int ret = 0;
	bool should_encrypt = false;
	bool should_encrypt = false;
	struct bio *bio = NULL;
	struct bio *bio = NULL;
	bool is_encrypted = false;
	bool is_encrypted = false;
@@ -164,7 +164,7 @@ static bool req_crypt_should_encrypt(struct req_dm_crypt_io *req)


static  bool req_crypt_should_deccrypt(struct req_dm_crypt_io *req)
static  bool req_crypt_should_deccrypt(struct req_dm_crypt_io *req)
{
{
	int ret;
	int ret = 0;
	bool should_deccrypt = false;
	bool should_deccrypt = false;
	struct bio *bio = NULL;
	struct bio *bio = NULL;
	bool is_encrypted = false;
	bool is_encrypted = false;