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

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

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

* commit '8f92950b':
  Fix global-buffer-overflow in voAWB_Copy.
parents 697a449f 8f92950b
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);
}