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

Commit 7066da4e authored by Colin Cross's avatar Colin Cross Committed by Android Git Automerger
Browse files

am dd0a6cdf: am 578b7473: Merge "libsparse: Fix null pointer issue"

* commit 'dd0a6cdf':
  libsparse: Fix null pointer issue
parents 58b0642a dd0a6cdf
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -675,6 +675,9 @@ struct output_file *output_file_open_fd(int fd, unsigned int block_size, int64_t
	} else {
		out = output_file_new_normal();
	}
	if (!out) {
		return NULL;
	}

	out->ops->open(out, fd);