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

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

Merge "soc: qcom: dcc: Use sscanf instead of strlcpy"

parents 4efb16c2 7085e056
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
/* Copyright (c) 2015-2017, The Linux Foundation. All rights reserved.
/* Copyright (c) 2015-2018, 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
@@ -554,7 +554,8 @@ static ssize_t dcc_store_func_type(struct device *dev,
	if (strlen(buf) >= 10)
		return -EINVAL;

	strlcpy(str, buf, sizeof(str));
	if (sscanf(buf, "%9s", str) != 1)
		return -EINVAL;

	mutex_lock(&drvdata->mutex);
	if (drvdata->enable) {
@@ -599,7 +600,8 @@ static ssize_t dcc_store_data_sink(struct device *dev,
	if (strlen(buf) >= 10)
		return -EINVAL;

	strlcpy(str, buf, sizeof(str));
	if (sscanf(buf, "%9s", str) != 1)
		return -EINVAL;

	mutex_lock(&drvdata->mutex);
	if (drvdata->enable) {