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

Commit 6e2e8424 authored by Kristian Høgsberg's avatar Kristian Høgsberg Committed by Stefan Richter
Browse files

firewire: Use correct payload pointer when demarshalling incoming requests.

parent c889475f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -575,7 +575,7 @@ allocate_request(struct fw_packet *p)
	request->ack = p->ack;
	request->length = length;
	if (data)
		memcpy(request->data, p->payload, length);
		memcpy(request->data, data, length);

	memcpy(request->request_header, p->header, sizeof p->header);