Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-9]: src/usr.sbin/bta2dpd/bta2dpd Pull up following revision(s) (r...



details:   https://anonhg.NetBSD.org/src/rev/559cce1de4ed
branches:  netbsd-9
changeset: 458413:559cce1de4ed
user:      martin <martin%NetBSD.org@localhost>
date:      Fri Sep 27 09:35:33 2019 +0000

description:
Pull up following revision(s) (requested by nat in ticket #254):

        usr.sbin/bta2dpd/bta2dpd/sbc_encode.c: revision 1.10

Fix off by one in sbc encoder.  Test mode transmission and reception
works again.
XXX pullup -8 and -9.

diffstat:

 usr.sbin/bta2dpd/bta2dpd/sbc_encode.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 88ce7cdc0035 -r 559cce1de4ed usr.sbin/bta2dpd/bta2dpd/sbc_encode.c
--- a/usr.sbin/bta2dpd/bta2dpd/sbc_encode.c     Fri Sep 27 09:32:22 2019 +0000
+++ b/usr.sbin/bta2dpd/bta2dpd/sbc_encode.c     Fri Sep 27 09:35:33 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sbc_encode.c,v 1.6 2019/07/27 23:33:09 maya Exp $ */
+/* $NetBSD: sbc_encode.c,v 1.6.2.1 2019/09/27 09:35:33 martin Exp $ */
 
 /*-
  * Copyright (c) 2015 - 2016 Nathanial Sloss <nathanialsloss%yahoo.com.au@localhost>
@@ -902,7 +902,7 @@
                totalSize += (size_t)mySize[numpkts];
                numpkts++;
 
-               if (numpkts > 13)
+               if (numpkts > 12)
                        break;
        }
 



Home | Main Index | Thread Index | Old Index