Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 2 Sep 2016 17:24:16 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r305287 - in stable: 10/usr.sbin/bluetooth/btpand 11/usr.sbin/bluetooth/btpand
Message-ID:  <201609021724.u82HOG3M020754@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Fri Sep  2 17:24:16 2016
New Revision: 305287
URL: https://svnweb.freebsd.org/changeset/base/305287

Log:
  MFC r305023:
  
  Avoid undefined behavior when calling va_start() in bnep_send_control(),
  by making the 'type' parameter a plain unsigned.

Modified:
  stable/11/usr.sbin/bluetooth/btpand/bnep.c
  stable/11/usr.sbin/bluetooth/btpand/btpand.h
Directory Properties:
  stable/11/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/10/usr.sbin/bluetooth/btpand/bnep.c
  stable/10/usr.sbin/bluetooth/btpand/btpand.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/11/usr.sbin/bluetooth/btpand/bnep.c
==============================================================================
--- stable/11/usr.sbin/bluetooth/btpand/bnep.c	Fri Sep  2 17:07:52 2016	(r305286)
+++ stable/11/usr.sbin/bluetooth/btpand/bnep.c	Fri Sep  2 17:24:16 2016	(r305287)
@@ -574,7 +574,7 @@ bnep_recv_filter_multi_addr_rsp(channel_
 }
 
 void
-bnep_send_control(channel_t *chan, uint8_t type, ...)
+bnep_send_control(channel_t *chan, unsigned type, ...)
 {
 	packet_t *pkt;
 	uint8_t *p;
@@ -590,7 +590,7 @@ bnep_send_control(channel_t *chan, uint8
 	va_start(ap, type);
 
 	*p++ = BNEP_CONTROL;
-	*p++ = type;
+	*p++ = (uint8_t)type;
 
 	switch(type) {
 	case BNEP_CONTROL_COMMAND_NOT_UNDERSTOOD:

Modified: stable/11/usr.sbin/bluetooth/btpand/btpand.h
==============================================================================
--- stable/11/usr.sbin/bluetooth/btpand/btpand.h	Fri Sep  2 17:07:52 2016	(r305286)
+++ stable/11/usr.sbin/bluetooth/btpand/btpand.h	Fri Sep  2 17:24:16 2016	(r305287)
@@ -183,7 +183,7 @@ b2eaddr(void *dst, bdaddr_t *src)
 /* bnep.c */
 bool		bnep_send(channel_t *, packet_t *);
 bool		bnep_recv(packet_t *);
-void		bnep_send_control(channel_t *, uint8_t, ...);
+void		bnep_send_control(channel_t *, unsigned, ...);
 
 /* channel.c */
 void		channel_init(void);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609021724.u82HOG3M020754>