V4L/DVB: DVB: ngene, fix memset parameters
Switch second and third memset parameter to stamp the length buffer bytes by 0xff's, not 255 bytes by low 8 bits of Length. Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org, jirislaby@gmail.com, Matthias Benesch <twoof7@freenet.de>, Ralph Metzler <rjkm@metzlerbros.de>, Oliver Endriss <o.endriss@gmx.de> Signed-off-by: Jiri Slaby <jslaby@suse.cz> Cc: Matthias Benesch <twoof7@freenet.de> Cc: Ralph Metzler <rjkm@metzlerbros.de> Cc: Oliver Endriss <o.endriss@gmx.de> Cc: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
7ca7ef6011
commit
fd9be0dc9b
1 changed files with 1 additions and 1 deletions
|
@ -564,7 +564,7 @@ static void FillTSBuffer(void *Buffer, int Length, u32 Flags)
|
|||
{
|
||||
u32 *ptr = Buffer;
|
||||
|
||||
memset(Buffer, Length, 0xff);
|
||||
memset(Buffer, 0xff, Length);
|
||||
while (Length > 0) {
|
||||
if (Flags & DF_SWAP32)
|
||||
*ptr = 0x471FFF10;
|
||||
|
|
Loading…
Reference in a new issue