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

Commit b992bb6b authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: hab: add the buffer size sanity check for exporting a buffer"

parents 77024cd7 27a23d8e
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
/* Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
/* Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -249,7 +249,8 @@ int hab_mem_export(struct uhab_context *ctx,
	int page_count;
	int compressed = 0;

	if (!ctx || !param || !param->buffer)
	if (!ctx || !param || !param->buffer || !param->sizebytes
		|| ((param->sizebytes % PAGE_SIZE) != 0))
		return -EINVAL;

	vchan = hab_get_vchan_fromvcid(param->vcid, ctx, 0);