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

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

Merge "disp: msm: dsi: Fix compilation error with -fno-builtin removed"

parents a787730c 0526e64c
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
 * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
 */

#include <linux/delay.h>
@@ -239,15 +239,18 @@ static bool dsi_parser_parse_prop(struct device *dev,
{
	bool found = false;
	char *out = strsep(&buf, "=");
	size_t buf_len;

	if (!out || !buf)
		goto end;

	prop->raw = devm_kzalloc(dev, strlen(buf) + 1, GFP_KERNEL);
	buf_len = strlen(buf);

	prop->raw = devm_kzalloc(dev, buf_len + 1, GFP_KERNEL);
	if (!prop->raw)
		goto end;

	strlcpy(prop->raw, buf, strlen(buf) + 1);
	strlcpy(prop->raw, buf, buf_len + 1);

	found = true;