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

Commit ac31c61f authored by Evgenii Stepanov's avatar Evgenii Stepanov Committed by Android Git Automerger
Browse files

am 0080e695: am 8f92950b: Merge "Fix global-buffer-overflow in voAWB_Copy."

* commit '0080e695':
  Fix global-buffer-overflow in voAWB_Copy.
parents fb055773 0080e695
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);
}