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

Commit 8f92950b authored by Evgenii Stepanov's avatar Evgenii Stepanov Committed by Gerrit Code Review
Browse files

Merge "Fix global-buffer-overflow in voAWB_Copy."

parents 37009e46 dae006d1
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -60,13 +60,11 @@ void Copy(
		*y++ = temp1;
	}
	num = (Word32)(L>>1);
	do{
		temp1 = *x++;
		temp2 = *x++;
	do{
		*y++ = temp1;
		*y++ = temp2;
		temp1 = *x++;
		temp2 = *x++;
	}while(--num!=0);
}