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

Commit 0274df3e authored by Alan Cox's avatar Alan Cox Committed by Daniel Vetter
Browse files

i915: fix error path leak in intel_sdvo_write_cmd

parent af447bd3
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -444,13 +444,16 @@ static bool intel_sdvo_write_cmd(struct intel_sdvo *intel_sdvo, u8 cmd,
	struct i2c_msg *msgs;
	int i, ret = true;

        /* Would be simpler to allocate both in one go ? */        
	buf = (u8 *)kzalloc(args_len * 2 + 2, GFP_KERNEL);
	if (!buf)
		return false;

	msgs = kcalloc(args_len + 3, sizeof(*msgs), GFP_KERNEL);
	if (!msgs)
	if (!msgs) {
	        kfree(buf);
		return false;
        }

	intel_sdvo_debug_write(intel_sdvo, cmd, args, args_len);